.redesign-home {
    margin: 0;
    color: #30343b;
    background: #ffffff;
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    letter-spacing: 0;
}

.redesign-home *,
.redesign-home *:before,
.redesign-home *:after {
    box-sizing: border-box;
}

.redesign-home a {
    color: inherit;
    text-decoration: none;
}

.redesign-home img {
    max-width: 100%;
}

.redesign-home .redesign-reveal {
    animation-duration: .45s;
    animation-fill-mode: backwards !important;
    animation-timing-function: ease-out;
}

.redesign-stagger-up {
    animation-name: redesignStaggerUp;
}

@keyframes redesignStaggerUp {
    from {
        opacity: 0;
        transform: translateY(var(--redesign-enter-y, 18px));
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.redesign-language .fas,
.redesign-menu-button .fas,
.redesign-menu-close .fas,
.redesign-track-field .fas,
.redesign-slider-button .fas,
.redesign-footer-about .fas {
    font-family: Arial, sans-serif !important;
    font-weight: 400;
}

.redesign-language .fa-globe:before {
    content: "\25CE";
}

.redesign-menu-button .fa-bars:before {
    content: "\2630";
}

.redesign-menu-close .fa-times:before {
    content: "\00D7";
}

.redesign-track-field .fa-search:before {
    content: "\2192";
}

.redesign-news-prev .fa-chevron-left:before {
    content: "\2039";
}

.redesign-news-next .fa-chevron-right:before {
    content: "\203A";
}

.redesign-footer-about .fa-envelope:before {
    content: "\2709";
}

.redesign-footer-about .fa-phone:before {
    content: "\260E";
}

.redesign-container {
    width: min(1170px, calc(100% - 48px));
    margin: 0 auto;
}

.redesign-wide-container {
    width: min(1320px, calc(100% - 48px));
}

.redesign-topbar {
    height: 32px;
    color: #ffffff;
    background: #303640;
}

.redesign-topbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.redesign-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.redesign-phone img {
    width: 11px;
    height: 11px;
}

.redesign-language {
    min-width: 70px;
    height: 22px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #363b43 !important;
    background: #ffffff;
    border-radius: 12px;
    font-size: 11px;
}

.redesign-navbar {
    position: relative;
    z-index: 40;
    height: 70px;
    background: #cf2024;
}

.redesign-navbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.redesign-logo {
    color: #ffffff !important;
    font-family: Arial, sans-serif;
    font-size: 30px;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
}

.redesign-nav {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.redesign-nav a {
    min-width: 106px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
    font-size: 14px;
}

.redesign-nav a:after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 12px;
    height: 2px;
    background: #ffffff;
    transition: left 180ms ease, right 180ms ease;
}

.redesign-nav a:hover:after,
.redesign-nav a:focus-visible:after,
.redesign-nav a.active:after {
    left: 26px;
    right: 26px;
}

.redesign-menu-button {
    width: 44px;
    height: 44px;
    padding: 0;
    display: none;
    color: #ffffff;
    background: transparent;
    border: 0;
    font-size: 24px;
    cursor: pointer;
}

.redesign-menu-close,
.redesign-menu-overlay {
    display: none;
}

.redesign-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #eef3f6;
}

.redesign-hero > img {
    width: 100%;
    height: auto;
    display: block;
}

.redesign-hero-actions {
    position: absolute;
    left: 50%;
    bottom: 11%;
    display: flex;
    gap: 12px;
    transform: translateX(-50%);
}

/* 首屏按钮居中入场动画 */
.redesign-hero-actions.redesign-reveal {
    animation-name: redesignHeroActionsIn;
}

.redesign-hero-actions.animated .redesign-button {
    animation: redesignHeroButtonIn .32s ease-out backwards;
}

.redesign-hero-actions.animated .redesign-button:nth-child(1) {
    animation-delay: .06s;
}

.redesign-hero-actions.animated .redesign-button:nth-child(2) {
    animation-delay: .14s;
}

@keyframes redesignHeroActionsIn {
    from {
        opacity: 0;
        transform: translate(-50%, 18px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes redesignHeroButtonIn {
    from {
        opacity: 0;
        transform: translateY(var(--redesign-enter-y, 14px));
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.redesign-button {
    min-width: 112px;
    min-height: 40px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.redesign-button-light {
    color: #353a42 !important;
    background: #ffffff;
    border-color: #e2e4e8;
}

.redesign-button-primary {
    color: #ffffff !important;
    background: #d52125;
    border-color: #d52125;
}

.redesign-button:hover,
.redesign-button:focus-visible {
    filter: brightness(.94);
}

.redesign-tools {
    overflow: visible;
    width: min(1170px, calc(100% - 48px));
    min-height: 104px;
    margin: -22px auto 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr) 2.6fr;
    position: relative;
    z-index: 20;
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(35, 45, 57, .1);
}

.redesign-tool-item,
.redesign-track {
    min-width: 0;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid #eef0f2;
}

.redesign-tool-item img {
    width: 44px;
    max-height: 42px;
    object-fit: contain;
    transition: transform 220ms ease;
}

.redesign-tool-item {
    transition: background-color 220ms ease, box-shadow 220ms ease;
}

.redesign-tool-item span,
.redesign-track label {
    color: #333943;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.redesign-track {
    border-right: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
}

.redesign-track-field {
    height: 34px;
    position: relative;
}

.redesign-track-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: flex;
    border: 1px solid #dfe3e7;
    background: #ffffff;
}

.redesign-track-title,
.redesign-track-search-icon,
.redesign-track-submit-text {
    display: none;
}

.redesign-track-field:focus-within .redesign-track-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 30;
    width: 520px;
    max-width: 100%;
    height: 250px;
    padding: 16px;
    flex-direction: column;
    gap: 15px;
    border: 1px solid #d52125;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(35, 45, 57, .16);
    animation: redesignTrackOpen .24s ease-out;
}

@keyframes redesignTrackOpen {
    from {
        opacity: 0;
        clip-path: inset(75% 40% 0 0);
    }
    to {
        opacity: 1;
        clip-path: inset(0);
    }
}

.redesign-track-field:focus-within .redesign-track-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3a3249;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.redesign-track-title svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.redesign-track-field:focus-within .redesign-track-submit-text {
    display: inline;
    margin-left: 8px;
}

.redesign-track-field:focus-within .fa-search {
    display: none;
}

.redesign-track-field:focus-within .redesign-track-search-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: -3px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.redesign-home .redesign-track-field textarea:focus-visible,
.redesign-home .redesign-track-field button:focus-visible {
    outline: 0;
}

.redesign-track-field textarea {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 6px 10px;
    overflow: hidden;
    resize: none;
    line-height: 20px;
    border: 0;
    outline: 0;
    font-size: 13px;
}

.redesign-track-field:focus-within textarea {
    flex: 1;
    min-height: 0;
    padding: 0;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    font-size: 16px;
    line-height: 26px;
}

.redesign-track-field:focus-within button {
    align-self: flex-end;
    width: 98px;
    height: 44px;
    color: #333333;
    background: #ffbb33;
    font-size: 16px;
    border-radius: 4px;
}

.redesign-track-field button {
    width: 40px;
    flex-shrink: 0;
    color: #5a616a;
    background: #ffffff;
    border: 0;
    cursor: pointer;
}

.redesign-section {
    padding: 78px 0;
}

.redesign-section-heading {
    margin: 0 auto 44px;
    text-align: center;
}

.redesign-section-heading h2 {
    margin: 0;
    color: #30343b;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.35;
}

.redesign-section-heading > span {
    width: 48px;
    height: 2px;
    margin: 14px auto 18px;
    display: block;
    background: #d52125;
    transform-origin: center;
}

.redesign-section-heading.animated > span {
    animation: redesignHeadingLineIn .34s .10s ease-out backwards;
}

@keyframes redesignHeadingLineIn {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

.redesign-section-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: #7a8089;
    font-size: 14px;
    line-height: 1.8;
}

.redesign-business {
    padding-top: 70px;
}

.redesign-business-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.redesign-business-card {
    min-height: 190px;
    padding: 32px 24px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    background: #ce2024;
    border-radius: 5px;
    text-align: center;
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.redesign-business-card.featured {
    background: #243858;
}

.redesign-business-card:focus-visible {
    color: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(42, 49, 61, .2);
}

.redesign-business-card img {
    width: 50px;
    height: 48px;
    margin-bottom: 16px;
    object-fit: contain;
    transition: transform 220ms ease;
}

.redesign-business-card h3 {
    margin: 0 0 8px;
    color: inherit;
    font-size: 20px;
    font-weight: 600;
}

.redesign-business-card p {
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    line-height: 1.65;
}

.redesign-process {
    background: #f6f7f8;
    border-top: 1px solid #edf0f2;
    border-bottom: 1px solid #edf0f2;
}

.redesign-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    overflow: hidden;
    background: transparent;
}

.redesign-process-item {
    min-width: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.redesign-process-item:nth-child(odd) {
    margin-top: 22px;
}

.redesign-process-reveal {
    animation-name: redesignProcessReveal;
}

@keyframes redesignProcessReveal {
    from {
        opacity: .3;
        clip-path: inset(0 100% 0 0);
    }
    to {
        opacity: 1;
        clip-path: inset(0);
    }
}

@media screen and (min-width: 992px) {
    .redesign-process-grid {
        grid-template-columns: repeat(4, calc((100% + 24px) / 4));
    }

    .redesign-process-item:nth-child(1) {
        z-index: 4;
        overflow: visible;
    }

    .redesign-process-item:nth-child(1) figcaption {
        right: -10px;
    }

    .redesign-process-item:nth-child(2) {
        z-index: 3;
    }

    .redesign-process-item:nth-child(3) {
        z-index: 2;
    }

    .redesign-process-item:nth-child(4) {
        z-index: 1;
    }

    .redesign-process-item:nth-child(3) {
        transform: translateX(-12px);
    }

    .redesign-process-item:nth-child(4) {
        transform: translateX(-24px);
    }
}

.redesign-process-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 320ms ease, filter 320ms ease;
}

.redesign-process-image {
    overflow: hidden;
}

.redesign-process-item figcaption {
    position: absolute;
    top: 22px;
    right: 0;
    min-width: 80px;
    height: 32px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #d21f24;
    font-size: 14px;
}

.redesign-process-item figcaption::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9px;
    width: 0;
    height: 0;
    border-top: 9px solid #94171a;
    border-right: 9px solid transparent;
}

.redesign-calculator {
    padding-bottom: 86px;
}

.redesign-calculator-fields {
    max-width: 1040px;
    margin: 0 auto 36px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.redesign-calculator-fields label {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 9px;
    color: #555b64;
    font-size: 12px;
    white-space: nowrap;
}

.redesign-calculator-fields.animated label {
    animation: redesignStaggerUp .32s ease-out backwards;
}

.redesign-calculator-fields.animated label:nth-child(1) {
    animation-delay: .04s;
}

.redesign-calculator-fields.animated label:nth-child(2) {
    animation-delay: .08s;
}

.redesign-calculator-fields.animated label:nth-child(3) {
    animation-delay: .12s;
}

.redesign-calculator-fields.animated label:nth-child(4) {
    animation-delay: .16s;
}

.redesign-calculator-fields.animated label:nth-child(5) {
    animation-delay: .20s;
}

.redesign-calculator-fields input,
.redesign-calculator-fields select {
    width: 100%;
    min-width: 0;
    height: 34px;
    padding: 0 9px;
    color: #6f7680;
    background: #ffffff;
    border: 1px solid #dde1e6;
    border-radius: 2px;
    font-size: 12px;
}

.redesign-calculator-results {
    max-width: 930px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 34px;
}

.redesign-result-card {
    position: relative;
    min-height: 142px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #d42125;
    border-radius: 7px;
    transition: box-shadow 220ms ease;
}

.redesign-result-card span {
    margin-bottom: 3px;
    font-size: 16px;
}

.redesign-result-card:first-child {
    background: #b9b9b9;
}

.redesign-result-card .redesign-result-badge {
    position: absolute;
    top: -12px;
    right: -7px;
    width: 44px;
    height: 44px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #213051;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    line-height: 1.1;
}

.redesign-result-card strong {
    font-family: Arial, sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
}

.redesign-result-card.is-previewed {
    animation: redesignResultPulse .42s ease-out;
}

@keyframes redesignResultPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 160, 22, .42);
    }
    55% {
        box-shadow: 0 0 0 6px rgba(245, 160, 22, .26);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 160, 22, 0);
    }
}

.redesign-calculate-button {
    display: block;
    margin: 0 auto 24px;
    min-width: 120px;
    height: 44px;
    padding: 0 22px;
    color: #ffffff;
    background: #f5a016;
    border: 0;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.redesign-calculate-button:active {
    transform: translateY(1px) scale(.98);
}

.redesign-calculator-note {
    margin: 28px 0 0;
    color: #9a9fa6;
    text-align: center;
    font-size: 11px;
}

.redesign-calculator-details {
    max-width: 760px;
    margin: 14px auto 0;
    color: #9a9fa6;
    text-align: center;
    font-size: 11px;
    line-height: 1.8;
}

.redesign-calculator-details p {
    margin: 0;
}

.redesign-calculator-error {
    max-width: 1040px;
    min-height: 20px;
    margin: -22px auto 18px;
    color: #c92024;
    text-align: center;
    font-size: 13px;
}

.redesign-calculator-error[hidden] {
    display: block;
    visibility: hidden;
}

.redesign-impact {
    padding-bottom: 40px;
    background: #ffffff;
}

.redesign-impact-band {
    min-height: 310px;
    padding: 46px 0 112px;
    background: #cc2024 url("../images/home-redesign/bg.png") center / cover no-repeat;
}

.redesign-stats {
    max-width: 760px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
}

.redesign-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    text-align: center;
}

.redesign-stat img {
    width: 64px;
    height: 56px;
    margin-bottom: 10px;
    object-fit: contain;
}

.redesign-stat strong {
    font-family: Georgia, serif;
    font-size: 36px;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.redesign-stat span {
    margin-top: 5px;
    font-size: 13px;
}

.redesign-coverage-card {
    min-height: 330px;
    margin: -112px auto 0;
    padding: 40px 44px;
    display: grid;
    grid-template-columns: minmax(0, 29fr) minmax(0, 71fr);
    align-items: center;
    gap: 36px;
    position: relative;
    z-index: 4;
    color: #ffffff;
    background: #213051;
    border-radius: 7px;
    box-shadow: 0 12px 28px rgba(32, 43, 61, .16);
}

.redesign-coverage-copy h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 24px;
}

.redesign-coverage-copy h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 2px;
    margin-top: 20px;
    background: #d52125;
}

.redesign-coverage-copy p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, .84);
    font-size: 13px;
    line-height: 1.8;
}

.redesign-coverage-copy .redesign-button {
    min-width: 96px;
    min-height: 36px;
    padding: 0 18px;
    font-size: 12px;
}

.redesign-coverage-card > img {
    width: 100%;
    display: block;
}

.redesign-news {
    padding-top: 62px;
}

.redesign-news-shell {
    display: grid;
    grid-template-columns: 48px minmax(0, 1170px) 48px;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.redesign-news-viewport {
    width: 100%;
    padding: 4px 3px 24px;
    overflow: hidden;
}

.redesign-news-shell.is-static {
    grid-template-columns: minmax(0, 1170px);
}

.redesign-news-shell.is-static .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.redesign-news-shell.is-static .redesign-news-card,
.redesign-partners.is-static .redesign-partner-item {
    width: auto;
}

.redesign-news-shell.is-static .redesign-slider-button,
.redesign-partners.is-static .redesign-partner-pagination {
    display: none;
}

.redesign-news-card {
    height: auto;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e4e6e9;
    border-radius: 5px;
    box-shadow: 0 5px 14px rgba(37, 46, 58, .08);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.redesign-news-viewport .swiper-wrapper,
.redesign-partner-list .swiper-wrapper {
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.redesign-news-card > img {
    width: 100%;
    aspect-ratio: 371 / 246;
    display: block;
    object-fit: cover;
    border-bottom: 2px solid #d52125;
    transition: transform 320ms ease;
}

.redesign-news-content {
    padding: 20px 22px 22px;
}

.redesign-news-content h3 {
    margin: 0 0 7px;
    color: #333943;
    font-size: 17px;
    line-height: 1.45;
}

.redesign-news-content time {
    display: block;
    margin-bottom: 12px;
    color: #a5a9af;
    font-size: 11px;
}

.redesign-news-content p {
    min-height: 66px;
    margin: 0 0 18px;
    color: #7b8189;
    font-size: 13px;
    line-height: 1.7;
}

.redesign-news-content a {
    min-width: 86px;
    min-height: 34px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d52125;
    border: 1px solid #d52125;
    border-radius: 18px;
    font-size: 12px;
}

.redesign-news-content a:hover,
.redesign-news-content a:focus-visible {
    color: #ffffff;
    background: #d52125;
}

.redesign-slider-button {
    width: 44px;
    height: 44px;
    padding: 0;
    color: #3f4650;
    background: transparent;
    border: 0;
    font-size: 24px;
    cursor: pointer;
}

.redesign-news-next {
    color: #e32639;
}

.redesign-partners {
    padding: 56px 0 64px;
    background: #f6f7f9 url("../images/home-redesign/bg1.png") center bottom / cover no-repeat;
}

.redesign-partners .redesign-section-heading {
    margin-bottom: 30px;
}

.redesign-partner-list {
    width: 100%;
    overflow: hidden;
}

.redesign-partners.is-static .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.redesign-partner-item {
    height: 92px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #eceef1;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(40, 48, 60, .06);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.redesign-partner-item img {
    width: 100%;
    max-height: 72px;
    object-fit: contain;
    transition: transform 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
    .redesign-tool-item:hover {
        background: #fafbfc;
        box-shadow: inset 0 -2px 0 rgba(213, 33, 37, .18);
    }

    .redesign-tool-item:hover img {
        transform: translateY(-2px) scale(1.06);
    }

    .redesign-business-card:hover {
        color: #ffffff;
        transform: translateY(-6px);
        box-shadow: 0 16px 30px rgba(42, 49, 61, .2);
        filter: brightness(1.04);
    }

    .redesign-business-card:hover img {
        transform: translateY(-2px) scale(1.1);
    }

    .redesign-process-item:hover .redesign-process-image img {
        transform: scale(1.05);
    }

    .redesign-news-card:hover {
        transform: translateY(-6px);
        border-color: rgba(213, 33, 37, .42);
        box-shadow: 0 16px 30px rgba(37, 46, 58, .14);
    }

    .redesign-news-card:hover > img {
        transform: scale(1.035);
    }

    .redesign-partner-item:hover {
        transform: translateY(-4px);
        border-color: rgba(213, 33, 37, .34);
        box-shadow: 0 12px 22px rgba(40, 48, 60, .12);
    }

    .redesign-partner-item:hover img {
        transform: scale(1.045);
    }

    .redesign-calculate-button:hover {
        background: #ee9510;
        box-shadow: 0 8px 18px rgba(245, 160, 22, .28);
        transform: translateY(-2px);
    }
}

.redesign-partner-pagination {
    min-height: 20px;
    margin-top: 20px;
    position: static;
    text-align: center;
}

.redesign-partner-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 4px;
    background: #aeb3ba;
    opacity: 1;
}

.redesign-partner-pagination .swiper-pagination-bullet-active {
    background: #d52125;
}

.redesign-footer {
    color: #ffffff;
    background: #243858;
}

.redesign-footer-grid {
    padding-top: 66px;
    padding-bottom: 54px;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) minmax(0, 1.2fr) 420px;
    gap: 24px;
}

.redesign-footer h2 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.redesign-footer-line {
    width: 34px;
    height: 2px;
    margin: 10px 0 18px;
    display: block;
    background: #d52125;
}

.redesign-footer p,
.redesign-footer li,
.redesign-footer a {
    color: rgba(255, 255, 255, .74);
    font-size: 12px;
    line-height: 1.8;
}

.redesign-footer-about p {
    margin: 0 0 14px;
}

.redesign-footer-about ul {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.redesign-footer-about li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.redesign-footer-button {
    min-width: 88px;
    height: 32px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 18px;
}

.redesign-footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.redesign-footer-links a:before {
    content: "›";
    margin-right: 8px;
    color: rgba(255, 255, 255, .5);
}

.redesign-footer-links a:hover,
.redesign-footer-links a:focus-visible,
.redesign-footer-links a.highlight {
    color: #ff4a4f;
}

.redesign-qr-grid {
    width: 220px;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.redesign-qr-grid a {
    min-width: 0;
    text-align: center;
}

.redesign-qr-grid img {
    width: 100%;
    aspect-ratio: 1;
    padding: 4px;
    border-radius: 4px;
    display: block;
    object-fit: contain;
    background: #ffffff;
}

.redesign-qr-grid span {
    display: block;
    margin-top: 6px;
}

.redesign-qr-note {
    margin: 12px 0 0;
}

.redesign-footer-bottom {
    margin-top: 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.redesign-footer-bottom span {
    flex-basis: 100%;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.redesign-footer-bottom a {
    color: #edf1f7;
    white-space: nowrap;
}

.redesign-footer-bottom a:hover,
.redesign-footer-bottom a:focus-visible {
    color: #ffffff;
    text-decoration: underline;
}

.redesign-footer-bottom a + a::before {
    content: "|";
    margin: 0 8px;
    color: #c4cedd;
}

.redesign-copyright {
    padding: 20px 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 10px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    color: #dce3ed;
    text-align: center;
    font-size: 12px;
    line-height: 1.8;
}

.redesign-copyright a {
    color: #edf1f7;
}

.redesign-home :focus-visible {
    outline: 3px solid rgba(255, 255, 255, .9);
    outline-offset: 3px;
}

.redesign-home main :focus-visible {
    outline-color: #d52125;
}

@media screen and (max-width: 1199px) {
    .redesign-container,
    .redesign-tools {
        width: min(960px, calc(100% - 40px));
    }

    .redesign-wide-container {
        width: min(1060px, calc(100% - 40px));
    }

    .redesign-nav a {
        min-width: 88px;
        padding: 0 14px;
    }

    .redesign-tool-item,
    .redesign-track {
        padding-left: 18px;
        padding-right: 18px;
    }

    .redesign-business-grid {
        max-width: 820px;
    }

    .redesign-calculator-fields {
        grid-template-columns: repeat(3, 1fr);
    }

    .redesign-news-shell {
        grid-template-columns: 44px minmax(0, 940px) 44px;
        gap: 14px;
    }

    .redesign-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 44px;
    }
}

@media screen and (max-width: 991px) {
    .redesign-container,
    .redesign-tools,
    .redesign-wide-container {
        width: calc(100% - 40px);
    }

    .redesign-navbar {
        height: 64px;
    }

    .redesign-logo {
        font-size: 27px;
    }

    .redesign-menu-button {
        display: block;
    }

    .redesign-menu-close {
        width: 44px;
        height: 44px;
        padding: 0;
        display: block;
        position: absolute;
        top: 14px;
        left: 18px;
        color: #d52125;
        background: transparent;
        border: 0;
        font-size: 22px;
        cursor: pointer;
    }

    .redesign-nav {
        width: 310px;
        max-width: 86vw;
        height: 100dvh;
        padding: 76px 28px 30px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: 0;
        right: -330px;
        z-index: 110;
        overflow-y: auto;
        background: #ffffff;
        box-shadow: -10px 0 30px rgba(20, 29, 42, .16);
        transition: right 240ms ease;
    }

    .redesign-nav.open {
        right: 0;
    }

    .redesign-nav a {
        width: 100%;
        min-height: 50px;
        padding: 0;
        justify-content: flex-start;
        color: #30343b;
        border-bottom: 1px solid #eceef1;
        font-size: 15px;
    }

    .redesign-nav a:after {
        display: none;
    }

    .redesign-nav a.active {
        color: #d52125;
    }

    .redesign-menu-overlay {
        width: 100%;
        height: 100dvh;
        display: block;
        position: fixed;
        inset: 0;
        z-index: 100;
        visibility: hidden;
        opacity: 0;
        background: rgba(18, 23, 31, .68);
        transition: opacity 200ms ease, visibility 200ms ease;
    }

    .redesign-menu-overlay.open {
        visibility: visible;
        opacity: 1;
    }

    .redesign-tools {
        grid-template-columns: repeat(2, 1fr);
    }

    .redesign-tool-item,
    .redesign-track {
        min-height: 92px;
        border-bottom: 1px solid #eef0f2;
    }

    .redesign-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .redesign-calculator-results {
        gap: 20px;
    }

    .redesign-result-card strong {
        font-size: 38px;
    }

    .redesign-coverage-card {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .redesign-coverage-copy {
        max-width: 620px;
    }

    .redesign-news-shell {
        grid-template-columns: 40px minmax(0, 1fr) 40px;
    }

    .redesign-news-shell.is-static .swiper-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .redesign-partners.is-static .swiper-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .redesign-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 44px 70px;
    }
}

@media screen and (max-width: 767px) {
    .redesign-stagger-up,
    .redesign-hero-actions .redesign-button {
        --redesign-enter-y: 10px;
    }

    .redesign-container,
    .redesign-tools,
    .redesign-wide-container {
        width: calc(100% - 32px);
    }

    .redesign-topbar {
        height: 30px;
    }

    .redesign-phone {
        font-size: 11px;
    }

    .redesign-hero {
        height: 300px;
    }

    .redesign-hero > img {
        width: auto;
        max-width: none;
        height: 100%;
        position: absolute;
        left: 50%;
        object-fit: cover;
        transform: translateX(-50%);
    }

    .redesign-hero-actions {
        bottom: 24px;
    }

    .redesign-button {
        min-width: 102px;
        min-height: 42px;
        padding: 0 18px;
    }

    .redesign-tools {
        margin-top: 0;
        padding: 0;
        box-shadow: 0 5px 20px rgba(35, 45, 57, .09);
    }

    .redesign-tool-item,
    .redesign-track {
        min-height: 100px;
        padding: 14px;
    }

    .redesign-tool-item {
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        text-align: center;
    }

    .redesign-tool-item:nth-child(2n) {
        border-right: 0;
    }

    .redesign-tool-item img {
        width: 38px;
        height: 36px;
    }

    .redesign-track {
        border-right: 0;
    }

    .redesign-section {
        padding: 58px 0;
    }

    .redesign-section-heading {
        margin-bottom: 32px;
    }

    .redesign-section-heading h2 {
        font-size: 24px;
    }

    .redesign-section-heading p {
        font-size: 13px;
    }

    .redesign-business-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .redesign-business-card {
        min-height: 168px;
        padding: 24px 14px;
    }

    .redesign-business-card h3 {
        font-size: 18px;
    }

    .redesign-process-grid {
        grid-template-columns: 1fr;
        max-width: 390px;
        margin: 0 auto;
        gap: 12px;
        background: transparent;
    }

    .redesign-process-item {
        background: #ffffff;
    }

    .redesign-process-item:nth-child(odd) {
        margin-top: 0;
    }

    .redesign-calculator-fields {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .redesign-calculator-fields label {
        grid-template-columns: 92px 1fr;
        font-size: 13px;
    }

    .redesign-calculator-fields input,
    .redesign-calculator-fields select {
        height: 44px;
        font-size: 14px;
    }

    .redesign-calculator-results {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .redesign-result-card {
        min-height: 126px;
    }

    .redesign-calculate-button {
        width: 136px;
        height: 46px;
        margin: 0 auto 24px;
    }

    .redesign-impact-band {
        min-height: 260px;
        padding: 40px 0 92px;
    }

    .redesign-stats {
        gap: 12px;
    }

    .redesign-stat img {
        width: 48px;
        height: 44px;
    }

    .redesign-stat strong {
        font-size: 27px;
    }

    .redesign-stat span {
        font-size: 11px;
    }

    .redesign-coverage-card {
        margin-top: -80px;
        padding: 28px 22px;
    }

    .redesign-news-shell {
        display: block;
        position: relative;
    }

    .redesign-news-shell.is-static .swiper-wrapper {
        grid-template-columns: 1fr;
    }

    .redesign-slider-button {
        position: absolute;
        top: 50%;
        z-index: 5;
        color: #ffffff;
        background: rgba(36, 56, 88, .86);
        border-radius: 50%;
        transform: translateY(-50%);
    }

    .redesign-news-prev {
        left: 8px;
    }

    .redesign-news-next {
        right: 8px;
    }

    .redesign-footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }
}

@media screen and (max-width: 480px) {
    .redesign-language {
        min-width: 62px;
        padding: 0 8px;
    }

    .redesign-hero {
        height: 270px;
    }

    .redesign-hero-actions {
        gap: 8px;
    }

    .redesign-tools {
        width: 100%;
    }

    .redesign-tool-item span,
    .redesign-track label {
        font-size: 13px;
    }

    .redesign-business-grid {
        grid-template-columns: 1fr;
    }

    .redesign-partners.is-static .swiper-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .redesign-business-card {
        min-height: 160px;
    }

    .redesign-result-card strong {
        font-size: 36px;
    }

    .redesign-coverage-card > img {
        margin-top: 4px;
    }

}

@media (prefers-reduced-motion: reduce) {
    .redesign-home *,
    .redesign-home *:before,
    .redesign-home *:after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
