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

:root {
    --font-sans: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto,
        Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    --font-display: "Raleway", var(--font-sans);
    --gradientHero: linear-gradient(180deg, rgba(216, 216, 216, 1) 0%, rgba(255, 255, 255, 1) 100%);
    --gradientModule: linear-gradient(363deg, rgba(216, 216, 216, 1) 0%, rgba(255, 255, 255, 1) 100%);
    --gradientHero2: linear-gradient(270deg, rgba(216, 216, 216, 1) 0%, rgba(255, 255, 255, 1) 100%);
    --white: #fff;
    --gray: #f6f6f6;
    --yellow: #ecc953;
    --blue: #232d5a;
    --header-height: 80px;

}

html {
    font-family: var(--font-sans);
    font-optical-sizing: auto;
    overflow-x: clip;
}

body {
    font-family: inherit;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: var(--white);
}

img,
svg,
video,
canvas,
iframe {
    max-width: 100%;
}

#app {
    width: 100%;
    overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-optical-sizing: auto;
}

ul {
    list-style: none;
}

a {
    color: inherit;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    margin-bottom: calc(-1 * var(--header-height));
    padding: 18px 0;
    background: transparent;
    transition: background 0.3s ease;
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.header__container {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header__logo img {
    height: 44px;
    width: auto;
    display: block;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header__nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--blue);
}


.header__nav-item--active .header__nav-link {
    background: rgba(35, 45, 90, 0.12);
}

.header__nav-item--highlight .header__nav-link {
    border-radius: 999px;
    padding-inline: 14px;
    background: rgba(236, 201, 83, 0.14);
    border: 1px solid rgba(236, 201, 83, 0.6);
}

.header__nav-link:hover {
    background: rgba(35, 45, 90, 0.08);
}

.header__nav-link:focus-visible {
    outline: 2px solid rgba(35, 45, 90, 0.35);
    outline-offset: 2px;
}

.header__toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.header__toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--blue);
    position: relative;
    transition: background 0.2s;
}

.header__toggle-icon::before,
.header__toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--blue);
    transition: transform 0.2s;
}

.header__toggle-icon::before { top: -8px; }
.header__toggle-icon::after { top: 8px; }

.header--open .header__toggle-icon { background: transparent; }
.header--open .header__toggle-icon::before { transform: rotate(45deg); top: 0; }
.header--open .header__toggle-icon::after { transform: rotate(-45deg); top: 0; }

.hero {
    position: relative;
    background: var(--gradientHero);
}

.hero__container {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: calc(56px + var(--header-height)) 24px 18px;
    text-align: center;
}

.hero__title {
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.12;
    font-weight: 700;
    color: var(--blue);
}

.hero__subtitle {
    margin: 14px auto 0;
    max-width: 720px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.72);
}

.hero__cta {
    margin-top: 18px;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 6px;
    background: var(--yellow);
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
    transition: transform 0.2s;
}

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

.hero__cta:focus-visible {
    outline: 3px solid rgba(35, 45, 90, 0.35);
    outline-offset: 3px;
}

.hero__visual {
    position: relative;
    height: clamp(220px, 28vw, 430px);
    overflow: hidden;
}

.hero__flags {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    max-width: none;
    height: auto;
    z-index: 1;
}

.hero__people {
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    height: 430px;
    max-width: none;
    z-index: 2;
}

.hero__how {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero__how:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: -3px;
}

.module {
    background: var(--gradientModule);
}

.prestart {
    padding: 72px 0 84px;
    background: transparent;
}

.prestart__container {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.prestart__title {
    text-align: center;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.1;
    font-weight: 700;
    color: var(--blue);
}

.prestart__grid {
    margin: 36px auto 0;
    width: min(920px, 100%);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.prestart__card {
    background: var(--blue);
    color: var(--white);
    border-radius: 18px;
    padding: 28px 26px 26px;
    box-shadow: 0 14px 40px rgba(16, 22, 52, 0.18);
}

.prestart__card-title {
    text-align: center;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 700;
}

.prestart__list {
    margin-top: 22px;
    display: grid;
    gap: 16px;
}

.prestart__item {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.prestart__icon {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.prestart__tagline {
    margin: 54px auto 0;
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(22px, 3.2vw, 38px);
    line-height: 1.15;
    font-weight: 400;
    color: var(--blue);
}

.prestart__tagline-accent {
    margin-left: 10px;
    color: var(--yellow);
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
}

.start {
    padding: 72px 0 84px;
    background: transparent;
}

.start__container {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.start__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2px minmax(0, 1fr);
    gap: 64px;
    align-items: start;
}

.start__divider {
    width: 2px;
    height: 100%;
    background: var(--yellow);
    border-radius: 999px;
}

.start__title {
    font-size: clamp(22px, 2.6vw, 32px);
    line-height: 1.15;
    font-weight: 700;
    color: var(--blue);
}

.start__subtitle {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(0, 0, 0, 0.78);
}

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

.start__pill {
    appearance: none;
    border: 1px solid rgba(35, 45, 90, 0.28);
    background: var(--white);
    color: var(--blue);
    border-radius: 6px;
    padding: 10px 14px;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.1;
    cursor: pointer;
}

.start__pill--wide {
    grid-column: 1 / -1;
}

.start__pill:hover {
    border-color: rgba(35, 45, 90, 0.45);
    background: rgba(35, 45, 90, 0.04);
}

.start__pill:focus-visible {
    outline: 3px solid rgba(35, 45, 90, 0.28);
    outline-offset: 3px;
}

.start__pill-wrap {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.start__stats {
    margin-top: 28px;
}

.start__stats-title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--blue);
}

.start__stats-row {
    margin-top: 12px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    color: rgba(0, 0, 0, 0.8);
}

.start__stats-number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--blue);
}

.start__stats-label {
    font-size: 14px;
}

.start__pill--active {
    border-color: var(--blue);
    background: rgba(35, 45, 90, 0.08);
}

.start-chart {
    display: block;
    padding: 0 0 72px;
    background: transparent;
}

.start-chart--visible {
    display: block;
}

.start-chart__container {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.start-chart__title {
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.2;
    font-weight: 700;
    color: var(--blue);
}

.start-chart__subtitle {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(0, 0, 0, 0.78);
}

.start-chart__bars {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.start-chart__row {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
}

.start-chart__name {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
}

.start-chart__barOuter {
    position: relative;
    width: 100%;
    height: 20px;
    border-radius: 999px;
    background: rgba(35, 45, 90, 0.08);
    overflow: hidden;
}

.start-chart__barInner {
    height: 100%;
    border-radius: inherit;
    background: var(--yellow);
    transform-origin: left center;
    transition: width 200ms ease-out;
}

.start-chart__barInner::after {
    content: attr(data-value);
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: 600;
    color: var(--blue);
}

.start-chart__legend {
    margin-top: 10px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
}

.page-criteria {
    background: var(--white);
}

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

.criteria-hero__container {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: calc(56px + var(--header-height)) 24px 110px;
    text-align: center;
}

.criteria-hero__title {
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.12;
    color: var(--blue);
}

.criteria-hero__subtitle {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.72);
}

.criteria-hero__tabs {
    margin-top: 34px;
    display: inline-flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(16, 22, 52, 0.12);
}

.criteria-hero__tab {
    appearance: none;
    border: 0;
    background: rgba(0, 0, 0, 0.28);
    color: rgba(255, 255, 255, 0.92);
    padding: 12px 26px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}

.criteria-hero__tab+.criteria-hero__tab {
    border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.criteria-hero__tab--active {
    background: var(--blue);
    color: var(--yellow);
}

.criteria-hero__tab:focus-visible {
    outline: 3px solid rgba(35, 45, 90, 0.28);
    outline-offset: -3px;
}

.criteria-hero__flag {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: none;
    height: auto;
    pointer-events: none;
}

.criteria-module {
    padding: 80px 0;
    background: var(--white);
}

.criteria-module__container {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.criteria-module__grid {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.criteria-module__panel {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    padding: 22px 22px 20px;
}

.criteria-module__title {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--blue);
}

.criteria-module__rule {
    margin: 14px 0;
    height: 2px;
    background: rgba(236, 201, 83, 0.55);
}

.criteria-module__criteria {
    display: grid;
    gap: 14px;
}

.criteria-module__switchRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
}

.criteria-module__switchText {
    font-size: 18px;
    line-height: 1.18;
    font-weight: 600;
    color: rgba(35, 45, 90, 0.92);
}

.criteria-module__switch {
    position: relative;
    width: 52px;
    height: 28px;
    flex: 0 0 auto;
}

.criteria-module__switch input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.criteria-module__switchUi {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.16);
    transition: background 160ms ease;
}

.criteria-module__switchUi::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    transition: transform 160ms ease;
}

.criteria-module__switch input:checked+.criteria-module__switchUi {
    background: var(--yellow);
}

.criteria-module__switch input:checked+.criteria-module__switchUi::before {
    transform: translateX(24px);
}

.criteria-module__switch input:focus-visible+.criteria-module__switchUi {
    outline: 3px solid rgba(35, 45, 90, 0.28);
    outline-offset: 3px;
}

.criteria-module__hint {
    margin-top: 14px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.78);
}

.criteria-module__content {
    min-width: 0;
}

.criteria-module__top {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0 10px;
}

.criteria-module__candidates {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 4px 2px;
}

.criteria-module__candidate {
    position: relative;
    width: 94px;
    flex: 0 0 auto;
    border: 0;
    padding: 0;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    scroll-snap-align: start;
}

.criteria-module__candidate--active {
    background: transparent;
}

.criteria-module__candidate--active .criteria-module__dotIcon {
    opacity: 1;
}

.criteria-module__dotIcon {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 14px;
    height: 14px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.criteria-module__avatar {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 0;
    object-fit: scale-down;
    object-position: bottom;
    display: block;
    background: #f5f5f5;
}

.criteria-module__name {
    margin-top: 0;
    display: block;
    padding: 8px 6px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    background: #b2b2b2;
    white-space: normal;
    word-break: break-word;
}

.criteria-module__active {
    background: var(--blue);
}



.criteria-module__next {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 0;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    cursor: pointer;
}

.criteria-module__nextIcon {
    display: block;
}

.criteria-module__next:focus-visible {
    outline: 3px solid rgba(35, 45, 90, 0.28);
    outline-offset: 3px;
}

.criteria-module__tableWrap {
    margin-top: 10px;
    overflow: auto;
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: var(--white);
}

.criteria-module__table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-size: 12px;
}

.criteria-module__table th,
.criteria-module__table td {
    border: 1px solid rgba(0, 0, 0, 0.18);
    padding: 10px 12px;
}

.criteria-module__table thead th {
    background: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    color: rgba(35, 45, 90, 0.95);
    text-align: center;
}

.criteria-module__table tbody th {
    background: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    color: rgba(35, 45, 90, 0.95);
    white-space: nowrap;
}

.criteria-module__table td {
    text-align: center;
}

.criteria-module__table td img {
    width: 22px;
    height: 22px;
}

.criteria-module__col--inactive {
    opacity: 0.24;
}

.criteria-module__row--inactive {
    opacity: 0.35;
}

.criteria-module__mobile-selected {
    display: none;
    margin: 14px 0 6px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(35, 45, 90, 0.06);
    gap: 10px;
    flex-direction: column;
}

.criteria-module__mobile-selectedTitle {
    font-size: 14px;
    font-weight: 800;
    color: var(--blue);
}

.criteria-module__mobile-selectedList {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.criteria-module__mobile-selectedItem {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    appearance: none;
    border: 1px solid rgba(35, 45, 90, 0.28);
    background: var(--white);
    color: var(--blue);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
}

.criteria-module__mobile-selectedName {
    font-weight: 800;
}

.criteria-module__mobile-selectedScore {
    font-size: 11px;
    color: rgba(35, 45, 90, 0.7);
}

.criteria-module__mobile-empty {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
}

.criteria-module__cards {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
}

.criteria-module__card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.criteria-module__cardHeader {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.criteria-module__cardAvatar {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    background: #f1f1f1;
}

.criteria-module__cardName {
    font-size: 15px;
    font-weight: 800;
    color: var(--blue);
}

.criteria-module__cardScore {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(35, 45, 90, 0.72);
}

.criteria-module__cardBody {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.criteria-module__cardRow {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
}

.criteria-module__cardRow--empty {
    justify-content: flex-start;
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
}

.criteria-module__cardLabel {
    color: rgba(0, 0, 0, 0.7);
}

.criteria-module__cardValue {
    font-weight: 700;
    color: var(--blue);
}

.criteria-module__cards-empty {
    padding: 16px;
    border-radius: 10px;
    background: rgba(35, 45, 90, 0.04);
    color: rgba(0, 0, 0, 0.7);
    font-size: 13px;
    text-align: center;
}

.open {
    padding: 74px 0 74px;
    background: var(--white);
}

.open__container {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.open__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2px minmax(0, 1fr);
    gap: 64px;
    align-items: start;
}

.open__divider {
    width: 2px;
    height: 100%;
    background: var(--yellow);
    border-radius: 999px;
}

.open__title {
    font-size: clamp(24px, 3.2vw, 38px);
    line-height: 1.12;
    font-weight: 700;
    color: var(--blue);
}

.open__title-light {
    font-weight: 500;
}

.open__title-strong {
    font-weight: 800;
}

.open__links {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.78);
}

.open__link {
    text-decoration: none;
    cursor: pointer;
}

.open__link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.open__link--active {
    font-weight: 700;
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.open__sep {
    width: 2px;
    height: 18px;
    background: var(--yellow);
    border-radius: 999px;
}

.open__cta {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 6px;
    background: var(--yellow);
    font-family: var(--font-display);
    font-weight: 800;
    text-decoration: none;
    color: var(--blue);
}

.open__content-display {
    margin-top: 24px;
    min-height: 120px;
}

.open__content-section {
    display: none;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease-out;
}

.open__content-section--active {
    display: block;
}

.open__content-section p {
    margin-bottom: 12px;
}

.open__content-section ul {
    margin-bottom: 12px;
    list-style: none;
}

.open__content-section li {
    margin-bottom: 4px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Criteria Result */
.criteria-result {
    padding: 72px 0;
    background: var(--blue);
    color: var(--white);
    overflow: hidden;
}

.criteria-result__container {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.criteria-result__grid {
    display: grid;
    grid-template-columns: minmax(0, 450px) 1fr;
    gap: 64px;
    align-items: center;
}

.criteria-result__content {
    text-align: left;
}

.criteria-result__lead {
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.2;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.criteria-result__rule {
    margin: 24px 0;
    height: 3px;
    background: var(--yellow);
    border-radius: 999px;
}

.criteria-result__name {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.1;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    white-space: normal;
    word-break: break-word;
}

.criteria-result__note {
    margin-top: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.criteria-result__visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
}

.criteria-result__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: min(700px, 100%);
    z-index: 2;
    height: 100%;
}

.criteria-result__card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    backdrop-filter: blur(6px);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.criteria-result__card--winner {
    background: var(--yellow);
    color: var(--blue);
    border-color: rgba(0, 0, 0, 0.12);
}

.criteria-result__avatar {
    width: 82px;
    height: 82px;
    border-radius: 14px;
    object-fit: cover;
    margin: 0 auto 14px;
    display: block;
}

.criteria-result__label {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    word-break: break-word;
}

.criteria-result__score {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}

.criteria-result__card--winner .criteria-result__score {
    color: rgba(35, 45, 90, 0.8);
}

/* .criteria-result__visual::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, var(--blue) 100%);
    z-index: 20;
    pointer-events: none;
} */

.criteria-result__person {
    height: 360px;
    width: auto;
    object-fit: contain;
}

/* Criteria Follow */
.criteria-follow {
    padding: 80px 0;
    background: var(--gray);
}

.criteria-follow__container {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.criteria-follow__cols {
    display: grid;
    grid-template-columns: 1fr 2px 1fr 2px 1fr;
    gap: 32px;
    align-items: stretch;
}

.criteria-follow__col {
    padding: 12px 0;
}

.criteria-follow__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 8px;
}

.criteria-follow__subtitle {
    font-size: 16px;
    font-weight: 700;
    color: rgba(35, 45, 90, 0.8);
    margin-bottom: 12px;
}

.criteria-follow__text {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.75);
}

.criteria-follow__divider {
    width: 2px;
    height: auto;
    background: var(--yellow);
    border-radius: 999px;
    opacity: 0.5;
}

.criteria-follow__actions {
    margin-top: 56px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.criteria-follow__btn {
    appearance: none;
    border: 1px solid rgba(35, 45, 90, 0.3);
    background: transparent;
    color: var(--blue);
    padding: 0 24px;
    height: 48px;
    border-radius: 6px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.criteria-follow__btn:hover {
    border-color: var(--blue);
    background: rgba(35, 45, 90, 0.05);
}

.criteria-follow__btn--primary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.criteria-follow__btn--primary:hover {
    background: #1a2245;
}

.criteria-follow__note {
    margin-top: 32px;
    text-align: center;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
}

.criteria-follow__selectedList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.criteria-follow__selectedItem {
    appearance: none;
    border: 1px solid rgba(35, 45, 90, 0.3);
    background: var(--white);
    color: var(--blue);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
}

.criteria-follow__criteriaItem {
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    padding: 6px 10px;
    background: rgba(35, 45, 90, 0.08);
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
}

.criteria-follow__empty {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
}

.criteria-follow__summaryText {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
}

.criteria-share {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 999;
}

.criteria-share--open {
    opacity: 1;
    pointer-events: auto;
}

.criteria-share__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 18, 45, 0.5);
}

.criteria-share__dialog {
    position: relative;
    background: var(--white);
    width: min(520px, 92vw);
    border-radius: 14px;
    padding: 22px 22px 26px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    z-index: 1;
    outline: none;
}

.criteria-share__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.criteria-share__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--blue);
}

.criteria-share__close {
    border: 0;
    background: rgba(35, 45, 90, 0.08);
    color: var(--blue);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
}

.criteria-share__subtitle {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
}

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

.criteria-share__option {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border: 1px solid rgba(35, 45, 90, 0.2);
    background: var(--white);
    color: var(--blue);
    border-radius: 10px;
    padding: 12px 14px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.criteria-share__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.criteria-share__icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.criteria-share__label {
    line-height: 1;
}

.criteria-share__option:hover {
    border-color: var(--blue);
    background: rgba(35, 45, 90, 0.06);
}

.home-video {
    padding: 48px 0;
    background: #e5e4e5;
}

.home-video__header {
    width: min(920px, 100%);
    margin: 0 auto 18px;
    padding: 0 24px;
    text-align: center;
}

.home-video__title {
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 800;
    color: var(--blue);
}

.home-video__container {
    width: min(920px, 100%);
    margin: 0 auto;
    padding: 0 24px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(16, 22, 52, 0.15);
    background: rgba(35, 45, 90, 0.06);
}

.home-video__iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.home-video__wrapper {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: min(1120px, 100%);
    margin: 32px auto 0;
    padding: 0 24px;
}

.home-video__item {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

.home-video__label-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    justify-content: center;
}

.home-video__badge {
    background: #cc0000;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.home-video__label {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
    text-align: center;
    margin-bottom: 16px;
}

.home-video__label-wrap .home-video__label {
    margin-bottom: 0;
    font-size: 22px;
}

.home-video__caption {
    margin-top: 14px;
    text-align: center;
    font-size: 16px;
    color: rgba(0,0,0,0.7);
    font-weight: 600;
}

.home-video__archive {
    width: 100%;
    margin: 0 auto;
}

.home-video__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .home-video__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }
}

.home-video__card .home-video__container {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 12px;
    border-radius: 12px;
}

.home-video__card .home-video__caption {
    font-size: 15px;
    margin-top: 0;
    line-height: 1.3;
}

.footer {
    background: var(--blue);
    padding: 48px 0;
    margin-top: 0;
}

.footer__container {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__logo {
    width: auto;
    display: block;
    opacity: 0.9;
}

/* Fake Chart Section */
.survey-preview {
    padding: 80px 0;
    background: #f4f6f8;
}

.survey-preview__container {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.survey-preview__title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 12px;
}

.survey-preview__subtitle {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 56px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.survey-preview__counter {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    text-align: center;
    margin-bottom: 32px;
}

.survey-preview__chart {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 32px;
    height: 320px;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.survey-preview__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
    position: relative;
}

.survey-preview__bar-wrap {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 20px;
}

.survey-preview__bar {
    width: 48px;
    background: #c0c0c0; /* Default gray for all */
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.survey-preview__item:first-child .survey-preview__bar {
    background: var(--blue);
}

.survey-preview__item:nth-child(2) .survey-preview__bar {
    background: #8fa0b5;
}

/* 3rd and onwards will use default #c0c0c0 */

.survey-preview__value {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
}

.survey-preview__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.survey-preview__img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: #ddd;
}

.survey-preview__share {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 32px;
}

.survey-preview__share-title {
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 4px;
}

.survey-preview__share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.survey-preview__share-btn:hover {
    background: rgba(18, 52, 92, 0.04);
    border-color: rgba(0, 0, 0, 0.18);
}

.survey-preview__share-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
}

.survey-preview__share-icon--facebook {
    background: #1877f2;
}

.survey-preview__share-icon--twitter {
    background: #000000;
}

.survey-preview__share-icon--whatsapp {
    background: #25d366;
}

.survey-preview__share-icon--telegram {
    background: #229ED9;
}

.survey-preview__share-label {
    white-space: nowrap;
}

/* Blog list */
.page-blog {
    background: var(--white);
}

.blog-hero {
    padding: calc(56px + var(--header-height)) 32px 40px;
    background: var(--gradientHero2);
}

.blog-hero__container {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.blog-hero__title {
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.15;
    font-weight: 700;
    color: var(--blue);
}

.blog-hero__subtitle {
    margin-top: 12px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.7);
}

.blog-list {
    padding: 40px 0 80px;
    background: var(--white);
}

.blog-list__container {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 24px;
}

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

.blog-card {
    background: var(--white);
    border-radius: 14px;
    padding: 22px 22px 20px;
    box-shadow: 0 12px 30px rgba(16, 22, 52, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-card__meta {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 6px;
}

.blog-card__title {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 10px;
}

.blog-card__title a {
    text-decoration: none;
}

.blog-card__title a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.blog-card__excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.78);
    margin-bottom: 14px;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    color: var(--blue);
}

.blog-card__link::after {
    content: "→";
    font-size: 12px;
}

.blog-card__link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (min-width: 768px) {
    .blog-list__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Blog detail */
.page-blog-post {
    background: var(--white);
}

.blog-post {
    padding: calc(56px + var(--header-height)) 0 80px;
}

.blog-post__container {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(260px, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.blog-post__content {
    max-width: 720px;
}

.blog-post__back {
    margin-bottom: 8px;
    font-size: 13px;
}

.blog-post__back a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.7);
}

.blog-post__back a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-post__meta {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 6px;
}

.blog-post__title {
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.2;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 14px;
}

.blog-post__lead {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 22px;
}

.blog-post__subtitle {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--blue);
    margin-top: 20px;
    margin-bottom: 8px;
}

.blog-post__list {
    margin: 8px 0 16px 18px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.8);
}

.blog-post__list li + li {
    margin-top: 4px;
}

.blog-post__list--ordered {
    list-style: decimal;
}

.blog-post__closing {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.85);
    font-weight: 600;
}

.blog-post__sidebar {
    border-radius: 14px;
    padding: 18px 18px 16px;
    background: rgba(35, 45, 90, 0.03);
}

.blog-post__sidebar-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 12px;
}

.blog-post__sidebar-list {
    list-style: none;
    display: grid;
    gap: 8px;
}

.blog-post__sidebar-item a {
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
}

.blog-post__sidebar-item a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 900px) {
    .blog-post__container {
        grid-template-columns: minmax(0, 1fr);
    }

    .blog-post__sidebar {
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }
}

.survey-preview__name {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
/* =========================================
   NEW RESPONSIVE STYLES
   ========================================= */

@media (max-width: 980px) {
    .criteria-module__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .start__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .start__divider {
        width: 100%;
        height: 2px;
    }
}

@media (max-width: 900px) {
    .criteria-follow__cols {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .criteria-follow__divider {
        width: 100%;
        height: 2px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .header__toggle {
        display: block;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        padding: 80px 24px;
        transition: right 0.3s ease;
        z-index: 15;
    }

    .header--open .header__nav {
        right: 0;
    }

    .header--open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 12;
        backdrop-filter: blur(2px);
    }

    .header__nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        width: 100%;
    }

    .header__nav-link {
        font-size: 16px;
        width: 100%;
        justify-content: flex-start;
        padding: 12px;
    }
    
    .open__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .open__divider {
        display: none;
    }
}

@media (min-width: 900px) {
    .criteria-result__visual {
        width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 800px) {
    .criteria-result__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 36px;
    }

    .criteria-result__content {
        text-align: center;
    }

    .criteria-result__rule {
        margin: 24px auto;
    }

    .criteria-result__visual {
        height: 300px;
    }

    .criteria-result__person {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .hero__visual {
        height: auto;
        min-height: 280px;
        margin-top: 32px;
    }
    
    .hero__people {
        max-width: 100%;
        height: auto;
        width: 100%;
        bottom: 0;
        object-fit: contain;
    }
    
    .hero__flags {
        max-width: 100%;
    }
    
    .hero__container {
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .criteria-module__tableWrap {
        display: none;
    }

    .criteria-module__cards {
        display: flex;
    }

    .criteria-module__mobile-selected {
        display: flex;
        position: sticky;
        bottom: 12px;
        top: auto;
        z-index: 5;
        box-shadow: 0 -8px 24px rgba(35, 45, 90, 0.12);
    }

    .criteria-module__card {
        padding: 10px 12px;
    }

    .criteria-module__cardHeader {
        padding-bottom: 8px;
    }

    .criteria-module__cardBody {
        gap: 6px;
    }

    .criteria-module__cardRow {
        font-size: 12px;
    }

    .criteria-module__candidate {
        width: 78px;
    }

    .criteria-module__name {
        padding: 6px 4px;
        font-size: 11px;
    }

    .criteria-module__table td, 
    .criteria-module__table th {
        padding: 8px 6px;
        font-size: 11px;
    }
    
    .criteria-module__table td img {
        width: 18px;
        height: 18px;
    }

    .criteria-module__tableWrap {
        box-shadow: inset -12px 0 12px -12px rgba(0,0,0,0.15);
    }

    .criteria-result__list {
        grid-template-columns: 1fr;
        gap: 12px;
        height: auto;
    }

    .criteria-result {
        overflow: visible;
    }

    .criteria-result__visual {
        height: auto;
        align-items: stretch;
    }

    .criteria-result__card {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 12px;
        text-align: left;
        padding: 12px 14px;
    }

    .criteria-result__avatar {
        width: 42px;
        height: 42px;
        margin: 0;
    }

    .criteria-result__score {
        margin-top: 0;
        font-size: 12px;
    }
}

@media (max-width: 760px) {
    .prestart {
        padding: 54px 0 64px;
    }

    .prestart__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .prestart__tagline-accent {
        margin-left: 0;
        display: inline-block;
    }
}

@media (max-width: 700px) {
    .criteria-hero__container {
        padding-bottom: 96px;
    }

    .criteria-hero__tabs {
        width: min(520px, 100%);
        display: grid;
        grid-template-columns: 1fr;
    }

    .criteria-hero__tab+.criteria-hero__tab {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.35);
    }
}

@media (max-width: 600px) {
    .survey-preview__chart {
        gap: 12px;
        height: 280px;
    }
    .survey-preview__bar {
        width: 28px;
    }
    .survey-preview__img {
        width: 40px;
        height: 40px;
    }
    .survey-preview__name {
        font-size: 11px;
    }
    .survey-preview__value {
        font-size: 12px;
    }
}

@media (max-width: 520px) {
    .start {
        padding: 54px 0 64px;
    }

    .start__pill-grid {
        grid-template-columns: 1fr;
    }

    .start-chart__row {
        grid-template-columns: 80px minmax(0, 1fr);
    }

    .hero__visual{
        min-height: 150px;
        height: auto;
    }
    .criteria-hero__flag {
        display: none;
    }
}

@media (max-width: 520px) {
    .criteria-module {
        padding: 18px 0 64px;
    }

    .criteria-module__panel {
        padding: 18px 18px 16px;
    }

    .criteria-module__switchText {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .survey-preview__chart {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
        row-gap: 24px;
        height: auto;
        align-items: end;
        padding-bottom: 12px;
    }

    .survey-preview__item {
        height: auto;
    }

    .survey-preview__bar-wrap {
        height: 160px;
        margin-bottom: 12px;
    }

    .survey-preview__bar {
        width: 100%;
        max-width: 28px;
    }

    .survey-preview__value {
        top: -22px;
    }

    .survey-preview__name {
        font-size: 10px;
    }

    .survey-preview__img {
        order: 1;
    }

    .survey-preview__value {
        order: 2;
        font-size: 11px;
    }

    .survey-preview__name {
        order: 3;
    }
    
    .hero__cta {
        display: flex;
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 400px) {
    .start-chart__row {
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 8px;
    }
    
    .start-chart__name {
        font-size: 11px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .criteria-hero__title {
        font-size: 24px;
    }
}

/* Latest News Section */
.latest-news {
    padding: 60px 0;
    background-color: var(--white);
}

.latest-news__container {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.latest-news__title {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 2rem;
    text-align: center;
}

.latest-news__featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .latest-news__featured {
        grid-template-columns: 1fr 1fr;
    }
}

.latest-news__image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.latest-news__headline {
    font-size: 1.5rem;
    color: var(--blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.latest-news__excerpt {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.latest-news__link {
    display: inline-block;
    background-color: var(--blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.latest-news__link:hover {
    background-color: #1a2244;
}

.latest-news__all-link {
    display: inline-block;
    color: var(--blue);
    text-decoration: underline;
    font-weight: 600;
}
