.home-situations {
    padding: 82px 0;
    background: #f6f6f4;
    color: #171717;
}

.home-situations__head {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.home-situations__head h2 {
    margin: 0 0 12px;
    color: #171717;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.02em;
    text-transform: none;
}

.home-situations__head p {
    margin: 0;
    color: #686868;
    font-size: 17px;
    line-height: 1.55;
}

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

.home-situation-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 340px;
    padding: 28px;
    appearance: none;
    border: 1px solid #dedede;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(20, 20, 20, .055);
    color: #171717;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.home-situation-card:hover,
.home-situation-card:focus {
    border-color: rgba(245, 185, 0, .72);
    box-shadow: 0 18px 42px rgba(20, 20, 20, .12);
    outline: none;
    transform: translateY(-5px);
}

.home-situation-card.is-selected {
    border-color: #f5b900;
    box-shadow: 0 14px 36px rgba(245, 185, 0, .18);
}

.home-situation-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 23px;
    border-radius: 50%;
    background: #202020;
    color: #f5b900;
    font-size: 23px;
    transition: background-color .22s ease, transform .22s ease;
}

.home-situation-card:hover .home-situation-card__icon,
.home-situation-card:focus .home-situation-card__icon,
.home-situation-card.is-selected .home-situation-card__icon {
    background: #111;
    transform: scale(1.06);
}

.home-situation-card__title,
.home-situation-card__text,
.home-situation-card__note,
.home-situation-card__action {
    display: block;
}

.home-situation-card__title {
    margin-bottom: 11px;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
}

.home-situation-card__text {
    color: #626262;
    font-size: 14px;
    line-height: 1.55;
}

.home-situation-card__note {
    margin-top: auto;
    padding-top: 20px;
    color: #303030;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.home-situation-card__action {
    margin-top: 17px;
    color: #171717;
    font-size: 13px;
    font-weight: 700;
}

.home-situation-card__action span {
    display: inline-block;
    margin-left: 5px;
    color: #dca600;
    font-size: 17px;
    transition: transform .22s ease;
}

.home-situation-card:hover .home-situation-card__action span,
.home-situation-card:focus .home-situation-card__action span {
    transform: translateX(5px);
}

.home-situations__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 32px;
    padding: 24px 28px;
    border: 1px solid #e1e1e1;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(20, 20, 20, .045);
}

.home-situations__cta strong,
.home-situations__cta span {
    display: block;
}

.home-situations__cta strong {
    margin-bottom: 4px;
    font-size: 17px;
}

.home-situations__cta span {
    color: #656565;
    font-size: 14px;
}

.home-situations__cta-button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 21px;
    border: 2px solid #f5b900;
    border-radius: 3px;
    background: #f5b900;
    color: #111;
    font-weight: 700;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.home-situations__cta-button:hover,
.home-situations__cta-button:focus {
    border-color: #ffd23f;
    background: #ffd23f;
    color: #111;
    text-decoration: none;
    transform: translateY(-1px);
}

.home-prices {
    padding: 82px 0;
    background: #fff;
    color: #171717;
}

.home-prices__head {
    max-width: 820px;
    margin: 0 auto 38px;
    text-align: center;
}

.home-prices__head h2 {
    margin: 0 0 12px;
    color: #171717;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -.02em;
    text-transform: none;
}

.home-prices__head p {
    margin: 0;
    color: #686868;
    font-size: 16px;
    line-height: 1.55;
}

.home-prices__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(300px, .95fr);
    gap: 26px;
    align-items: stretch;
}

.home-prices__card {
    border: 1px solid #e1e1e1;
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(20, 20, 20, .06);
}

.home-prices__card h3 {
    margin: 0;
    color: #1b1b1b;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: none;
}

.home-prices__card--list {
    padding: 27px 30px 25px;
    background: #fafaf8;
}

.home-prices__table {
    margin-top: 18px;
    border-top: 1px solid #dedede;
}

.home-prices__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 20px;
    align-items: center;
    min-height: 53px;
    padding: 11px 2px;
    border-bottom: 1px solid #e4e4e4;
}

.home-prices__row > span {
    color: #313131;
    font-size: 14px;
    line-height: 1.4;
}

.home-prices__row > strong {
    color: #191919;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
}

.home-prices__row > strong b {
    color: #b88a00;
    font-weight: 700;
}

.home-prices__row--head {
    min-height: 38px;
    padding-top: 4px;
    padding-bottom: 7px;
}

.home-prices__row--head > span {
    color: #8a8a8a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.home-prices__row--head > span:last-child {
    text-align: right;
}

.home-prices__all-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    color: #252525;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.home-prices__note {
    margin: 17px 0 0;
    color: #707070;
    font-size: 11px;
    line-height: 1.5;
}

.home-prices__all-link span {
    color: #c99600;
    font-size: 17px;
    transition: transform .2s ease;
}

.home-prices__all-link:hover,
.home-prices__all-link:focus {
    color: #171717;
    text-decoration: none;
}

.home-prices__all-link:hover span,
.home-prices__all-link:focus span {
    transform: translateX(4px);
}

.home-prices__card--factors {
    padding: 27px 26px;
    background: #f1f1ee;
}

.home-prices__factor {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid #d9d9d5;
}

.home-prices__factor:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.home-prices__factor-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #202020;
    color: #f5b900;
    font-size: 16px;
}

.home-prices__factor strong {
    display: block;
    margin: 1px 0 4px;
    color: #222;
    font-size: 14px;
    line-height: 1.35;
}

.home-prices__factor p {
    margin: 0;
    color: #666;
    font-size: 12px;
    line-height: 1.5;
}

.home-prices__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 26px;
    padding: 24px 28px;
    border: 1px solid #e1e1e1;
    border-left: 4px solid #f5b900;
    border-radius: 18px;
    background: #f8f8f6;
    box-shadow: 0 8px 24px rgba(20, 20, 20, .04);
}

.home-prices__cta strong,
.home-prices__cta span {
    display: block;
}

.home-prices__cta strong {
    margin-bottom: 4px;
    color: #1c1c1c;
    font-size: 17px;
}

.home-prices__cta span {
    color: #656565;
    font-size: 14px;
    line-height: 1.5;
}

.home-prices__photo-channels {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-width: 390px;
    padding: 10px 12px 10px 14px;
    border: 1px solid #454545;
    border-radius: 6px;
    background: #202020;
    box-shadow: 0 9px 24px rgba(20, 20, 20, .12);
}

.home-prices__photo-copy {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.home-prices__photo-copy > i {
    flex: 0 0 auto;
    color: #f5b900;
    font-size: 22px;
}

.home-prices__photo-copy strong,
.home-prices__photo-copy small {
    display: block;
}

.home-prices__photo-copy strong {
    margin: 0;
    color: #fff;
    font-size: 13px;
    line-height: 1.3;
}

.home-prices__photo-copy small {
    margin-top: 2px;
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
    line-height: 1.3;
}

.home-lock-types {
    padding: 82px 0;
    background: #f6f6f4;
    color: #171717;
}

.home-lock-types__head {
    max-width: 840px;
    margin: 0 auto 38px;
    text-align: center;
}

.home-lock-types__head h2 {
    margin: 0 0 12px;
    color: #171717;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -.02em;
    text-transform: none;
}

.home-lock-types__head p {
    margin: 0;
    color: #686868;
    font-size: 16px;
    line-height: 1.55;
}

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

.home-lock-type-card {
    display: flex;
    min-width: 0;
    min-height: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dfdfdf;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(20, 20, 20, .055);
    transition: border-color .23s ease, box-shadow .23s ease, transform .23s ease;
}

.home-lock-type-card:hover {
    border-color: rgba(245, 185, 0, .65);
    box-shadow: 0 18px 42px rgba(20, 20, 20, .12);
    transform: translateY(-5px);
}

.home-lock-type-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 205px;
    overflow: hidden;
    border-bottom: 1px solid #e7e7e4;
    background: #f1f1ee;
}

.home-lock-type-card__media img {
    display: block;
    width: auto;
    max-width: 82%;
    height: auto;
    max-height: 82%;
    object-fit: contain;
    transition: transform .35s ease;
}

.home-lock-type-card__media--cover img {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: 50% 56%;
}

.home-lock-type-card:hover .home-lock-type-card__media img {
    transform: scale(1.045);
}

.home-lock-type-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 25px 26px 24px;
}

.home-lock-type-card__body h3 {
    margin: 0 0 10px;
    color: #1b1b1b;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: none;
}

.home-lock-type-card__body p {
    margin: 0;
    color: #626262;
    font-size: 13px;
    line-height: 1.58;
}

.home-lock-type-card__body span {
    display: block;
    position: relative;
    margin-top: 14px;
    padding: 0 0 0 15px;
    color: #303030;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.45;
}

.home-lock-type-card__body span::before {
    position: absolute;
    top: 6px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f5b900;
    content: '';
}

.home-lock-types__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 30px;
    padding: 24px 28px;
    border: 1px solid #e0e0e0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(20, 20, 20, .045);
}

.home-lock-types__cta strong,
.home-lock-types__cta span {
    display: block;
}

.home-lock-types__cta strong {
    margin-bottom: 4px;
    color: #1c1c1c;
    font-size: 17px;
}

.home-lock-types__cta span {
    color: #656565;
    font-size: 14px;
    line-height: 1.5;
}

.home-lock-types__cta-button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 21px;
    border: 2px solid #f5b900;
    border-radius: 4px;
    background: #f5b900;
    color: #111;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.home-lock-types__cta-button:hover,
.home-lock-types__cta-button:focus {
    border-color: #ffd23f;
    background: #ffd23f;
    color: #111;
    text-decoration: none;
    transform: translateY(-1px);
}

.home-lock-types__photo-channels .home-prices__photo-copy strong {
    margin: 0;
    color: #fff;
    font-size: 13px;
}

.home-safe-opening {
    padding: 82px 0;
    background: #fff;
    color: #171717;
}

.home-safe-opening__head {
    max-width: 860px;
    margin: 0 auto 38px;
    text-align: center;
}

.home-safe-opening__head h2 {
    margin: 0 0 12px;
    color: #171717;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -.02em;
    text-transform: none;
}

.home-safe-opening__head p {
    margin: 0;
    color: #686868;
    font-size: 16px;
    line-height: 1.55;
}

.home-safe-opening__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, .95fr);
    gap: 28px;
    align-items: stretch;
}

.home-safe-opening__layout--single {
    grid-template-columns: minmax(0, 1fr);
}

.home-inline-photo-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 30px 0 0;
    color: #4d4d4d;
    text-align: center;
}

.home-inline-photo-note > i {
    color: #e5aa00;
    font-size: 18px;
}

.home-inline-photo-note a {
    color: #171717;
    font-weight: 700;
    text-decoration: none;
}

.home-inline-photo-note a:hover,
.home-inline-photo-note a:focus {
    color: #c89500;
}

.home-safe-opening__content {
    padding: 30px;
    border: 1px solid #e2e2e2;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(20, 20, 20, .055);
}

.home-safe-opening__content > h3,
.home-safe-opening__factors h3 {
    margin: 0;
    color: #1c1c1c;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: none;
}

.home-safe-opening__situations {
    margin-top: 18px;
    border-top: 1px solid #e5e5e5;
}

.home-safe-opening__situation {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid #e5e5e5;
}

.home-safe-opening__situation > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #202020;
    color: #f5b900;
    font-size: 16px;
}

.home-safe-opening__situation strong,
.home-safe-opening__factor strong {
    display: block;
    margin: 1px 0 4px;
    color: #252525;
    font-size: 14px;
    line-height: 1.4;
}

.home-safe-opening__situation p,
.home-safe-opening__factor p {
    margin: 0;
    color: #686868;
    font-size: 12px;
    line-height: 1.5;
}

.home-safe-opening__important {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    margin-top: 22px;
    padding: 18px;
    border-left: 4px solid #f5b900;
    border-radius: 10px;
    background: #f7f7f4;
}

.home-safe-opening__important-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f5b900;
    color: #171717;
    font-size: 17px;
}

.home-safe-opening__important strong {
    display: block;
    margin: 0 0 4px;
    color: #1f1f1f;
    font-size: 14px;
}

.home-safe-opening__important p {
    margin: 0;
    color: #565656;
    font-size: 12px;
    line-height: 1.55;
}

.home-safe-opening__factors {
    padding: 28px 27px;
    border: 1px solid #dfdfdc;
    border-radius: 20px;
    background: #f1f1ee;
    box-shadow: 0 12px 34px rgba(20, 20, 20, .05);
}

.home-safe-opening__factors-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #202020;
    color: #f5b900;
    font-size: 21px;
}

.home-safe-opening__factor {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 17px 0;
    border-bottom: 1px solid #d8d8d4;
}

.home-safe-opening__factor:nth-of-type(2) {
    margin-top: 12px;
    border-top: 1px solid #d8d8d4;
}

.home-safe-opening__factor:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.home-safe-opening__factor > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: #9b7600;
    font-size: 10px;
    font-weight: 700;
}

.home-safe-opening__final {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 26px 0 0;
    padding: 17px 20px;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    background: #fafaf8;
    color: #4e4e4e;
    font-size: 13px;
    line-height: 1.55;
}

.home-safe-opening__final i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: #c89500;
    font-size: 16px;
}

.home-opening-method {
    padding: 82px 0;
    background: #f6f6f4;
    color: #171717;
}

.home-opening-method__head {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.home-opening-method__head h2 {
    margin: 0 0 12px;
    color: #171717;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -.02em;
    text-transform: none;
}

.home-opening-method__head p {
    margin: 0;
    color: #686868;
    font-size: 16px;
    line-height: 1.55;
}

.home-opening-method__steps {
    display: grid;
    position: relative;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 46px 0 0;
    padding: 0;
    list-style: none;
}

.home-opening-method__steps::before {
    position: absolute;
    z-index: 0;
    top: 33px;
    right: 10%;
    left: 10%;
    height: 2px;
    background: linear-gradient(90deg, #f5b900 0%, #dca600 100%);
    content: '';
}

.home-opening-method__step {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.home-opening-method__marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin: 0 auto 21px;
    border: 2px solid #f5b900;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 22px rgba(20, 20, 20, .08);
}

.home-opening-method__marker span {
    color: #202020;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.home-opening-method__marker i {
    margin-left: 5px;
    color: #c89500;
    font-size: 12px;
}

.home-opening-method__content {
    padding: 0 12px;
    text-align: center;
}

.home-opening-method__content h3 {
    min-height: 44px;
    margin: 0 0 10px;
    color: #202020;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: none;
}

.home-opening-method__content p {
    min-height: 82px;
    margin: 0;
    color: #646464;
    font-size: 12px;
    line-height: 1.52;
}

.home-opening-method__content small {
    display: block;
    margin-top: 13px;
    padding-top: 12px;
    border-top: 1px solid #deded9;
    color: #383838;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.45;
}

.home-opening-method__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 760px;
    margin: 36px auto 0;
    padding: 16px 20px;
    border: 1px solid #dfdfdc;
    border-radius: 12px;
    background: #fff;
    color: #555;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.home-opening-method__note i {
    flex: 0 0 auto;
    color: #c89500;
    font-size: 16px;
}

.home-opening-method__note strong {
    color: #222;
}

.home-access-documents {
    padding: 82px 0;
    background: #fff;
    color: #171717;
}

.home-access-documents__head {
    max-width: 880px;
    margin: 0 auto 38px;
    text-align: center;
}

.home-access-documents__head h2 {
    margin: 0 0 12px;
    color: #171717;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -.02em;
    text-transform: none;
}

.home-access-documents__head p {
    margin: 0;
    color: #686868;
    font-size: 16px;
    line-height: 1.55;
}

.home-access-documents__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.home-access-documents__card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    min-height: 190px;
    padding: 28px;
    border: 1px solid #e0e0e0;
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(20, 20, 20, .055);
}

.home-access-documents__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #202020;
    color: #f5b900;
    font-size: 20px;
}

.home-access-documents__card h3 {
    margin: 1px 0 8px;
    color: #202020;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: none;
}

.home-access-documents__card p {
    margin: 0;
    color: #646464;
    font-size: 13px;
    line-height: 1.55;
}

.home-access-documents__card small {
    display: block;
    margin-top: 13px;
    padding-top: 12px;
    border-top: 1px solid #e3e3e0;
    color: #393939;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.45;
}

.home-access-documents__important {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    max-width: 920px;
    margin: 28px auto 0;
    padding: 19px 22px;
    border: 1px solid #e0e0dc;
    border-left: 4px solid #f5b900;
    border-radius: 13px;
    background: #f7f7f4;
}

.home-access-documents__important > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f5b900;
    color: #171717;
    font-size: 17px;
}

.home-access-documents__important strong {
    display: block;
    margin: 0 0 4px;
    color: #202020;
    font-size: 14px;
}

.home-access-documents__important p {
    margin: 0;
    color: #565656;
    font-size: 13px;
    line-height: 1.55;
}

.home-work-cases {
    padding: 82px 0;
    background: #f6f6f4;
    color: #171717;
}

.home-work-cases__head {
    max-width: 880px;
    margin: 0 auto 38px;
    text-align: center;
}

.home-work-cases__head h2 {
    margin: 0 0 12px;
    color: #171717;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -.02em;
    text-transform: none;
}

.home-work-cases__head p {
    margin: 0;
    color: #686868;
    font-size: 16px;
    line-height: 1.55;
}

.home-work-cases__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.home-work-case {
    display: grid;
    grid-template-columns: minmax(190px, 42%) minmax(0, 58%);
    min-width: 0;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid #dfdfdf;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(20, 20, 20, .065);
    transition: border-color .23s ease, box-shadow .23s ease, transform .23s ease;
}

.home-work-case:hover {
    border-color: rgba(245, 185, 0, .65);
    box-shadow: 0 18px 42px rgba(20, 20, 20, .11);
    transform: translateY(-4px);
}

.home-work-case:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.home-work-case__photos {
    display: grid;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    background: #242424;
}

.home-work-case__photos figure {
    position: relative;
    min-width: 0;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.home-work-case__photos img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.home-work-case:hover .home-work-case__photos img {
    transform: scale(1.025);
}

.home-work-case__content {
    min-width: 0;
    padding: 25px 24px;
}

.home-work-case__badge {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 5px 9px;
    border: 1px solid rgba(245, 185, 0, .55);
    border-radius: 999px;
    background: rgba(245, 185, 0, .09);
    color: #745800;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .03em;
    line-height: 1.2;
    text-transform: uppercase;
}

.home-work-case__content h3 {
    margin: 15px 0 16px;
    color: #202020;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: none;
}

.home-work-case__content dl {
    margin: 0;
}

.home-work-case__content dl > div {
    padding: 12px 0;
    border-top: 1px solid #e5e5e2;
}

.home-work-case__content dt {
    margin: 0 0 3px;
    color: #2a2a2a;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
}

.home-work-case__content dd {
    margin: 0;
    color: #666;
    font-size: 12px;
    line-height: 1.5;
}

.home-geography {
    padding: 82px 0;
    background: #f6f6f4;
    color: #171717;
}

.home-geography__head {
    max-width: 960px;
    margin: 0 auto 34px;
    text-align: center;
}

.home-geography__head h2 {
    margin: 0 0 12px;
    color: #171717;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -.02em;
    text-transform: none;
}

.home-geography__head p {
    margin: 0;
    color: #686868;
    font-size: 16px;
    line-height: 1.55;
}

.home-geography__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 9px;
}

.home-geography__facts > div {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 1px 13px;
    align-items: center;
    min-width: 0;
    padding: 18px 20px;
    border: 1px solid #e0e0dd;
    border-radius: 16px;
    background: #fff;
}

.home-geography__facts i {
    display: inline-flex;
    grid-row: 1 / 3;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #171717;
    color: #f5b900;
    font-size: 17px;
}

.home-geography__facts strong {
    color: #202020;
    font-size: 16px;
    line-height: 1.25;
}

.home-geography__facts span {
    color: #717171;
    font-size: 12px;
    line-height: 1.35;
}

.home-geography__note {
    margin: 0 0 27px;
    color: #777;
    font-size: 11px;
    line-height: 1.45;
}

.home-geography__navigator {
    overflow: hidden;
    border: 1px solid #dededb;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(20, 20, 20, .07);
}

.home-geography__tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 7px;
    background: #ececea;
}

.home-geography__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 54px;
    padding: 12px 15px;
    border: 0;
    border-radius: 13px;
    background: transparent;
    color: #4b4b4b;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.home-geography__tab i {
    color: #aa8200;
    font-size: 16px;
}

.home-geography__tab:hover,
.home-geography__tab:focus {
    background: rgba(255, 255, 255, .7);
    color: #171717;
}

.home-geography__tab.is-active {
    background: #171717;
    box-shadow: 0 6px 16px rgba(20, 20, 20, .16);
    color: #fff;
}

.home-geography__tab.is-active i {
    color: #f5b900;
}

.home-geography__panels {
    padding: 30px 31px 32px;
}

.home-geography__panel + .home-geography__panel {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e4e4e1;
}

.home-geography--enhanced .home-geography__panel:not(.is-active) {
    display: none;
}

.home-geography--enhanced .home-geography__panel + .home-geography__panel {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.home-geography__mobile-trigger {
    display: none;
}

.home-geography__panel-body h3 {
    margin: 0 0 20px;
    color: #202020;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: none;
}

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

.home-geography__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 49px;
    padding: 11px 14px;
    border: 1px solid #e4e4e0;
    border-radius: 11px;
    background: #fafaf8;
    color: #353535;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.home-geography__links a span,
.home-geography__all span {
    flex: 0 0 auto;
    color: #bf9000;
    font-size: 17px;
    transition: transform .2s ease;
}

.home-geography__links a:hover,
.home-geography__links a:focus {
    border-color: rgba(245, 185, 0, .75);
    background: #fff9e6;
    color: #171717;
    transform: translateY(-2px);
}

.home-geography__links a:hover span,
.home-geography__all:hover span {
    transform: translateX(3px);
}

.home-geography__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: #202020;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

.home-masters {
    padding: 82px 0;
    background: #fff;
    color: #171717;
}

.home-masters__head {
    max-width: 900px;
    margin: 0 auto 38px;
    text-align: center;
}

.home-masters__head h2 {
    margin: 0 0 12px;
    color: #171717;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -.02em;
    text-transform: none;
}

.home-masters__head p {
    margin: 0;
    color: #686868;
    font-size: 16px;
    line-height: 1.55;
}

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

.home-master-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #dfdfdf;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(20, 20, 20, .065);
    transition: border-color .23s ease, box-shadow .23s ease, transform .23s ease;
}

.home-master-card:hover {
    border-color: rgba(245, 185, 0, .65);
    box-shadow: 0 18px 42px rgba(20, 20, 20, .11);
    transform: translateY(-4px);
}

.home-master-card__photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f2f2ef;
}

.home-master-card__photo::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #f5b900;
    content: '';
}

.home-master-card__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.home-master-card:hover .home-master-card__photo img {
    transform: scale(1.025);
}

.home-master-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 25px 25px;
}

.home-master-card__body h3 {
    margin: 0 0 7px;
    color: #202020;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: none;
}

.home-master-card__specialization {
    margin: 0 0 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.home-master-card__detail {
    width: 100%;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid #e7e7e4;
}

.home-master-card__detail strong,
.home-master-card__detail span {
    display: block;
}

.home-master-card__detail strong {
    margin-bottom: 5px;
    color: #2a2a2a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.home-master-card__detail span {
    color: #686868;
    font-size: 13px;
    line-height: 1.5;
}

.home-master-card__meta {
    margin: 0 0 9px;
    color: #666;
    font-size: 13px;
    line-height: 1.45;
}

.home-master-card__meta i {
    width: 18px;
    color: #c89600;
    text-align: center;
}

.home-master-card__call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    margin-top: auto;
    padding: 12px 18px;
    border: 1px solid #f5b900;
    border-radius: 7px;
    background: #f5b900;
    color: #171717;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.home-master-card__call:hover,
.home-master-card__call:focus {
    border-color: #171717;
    background: #171717;
    color: #fff;
    text-decoration: none;
}

.home-opening-calculator {
    margin-bottom: 64px;
    padding: 36px;
    border: 1px solid #dedede;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 48px rgba(20, 20, 20, .07);
    color: #171717;
}

.home-opening-calculator__head {
    max-width: 760px;
    margin-bottom: 32px;
}

.home-opening-calculator__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #9a7600;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.home-opening-calculator__head h2 {
    margin: 0 0 10px;
    color: #171717;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.18;
    text-transform: none;
}

.home-opening-calculator__head p {
    margin: 0;
    color: #656565;
    font-size: 15px;
    line-height: 1.55;
}

.home-opening-calculator__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(310px, .75fr);
    gap: 30px;
    align-items: start;
}

.home-opening-calculator__steps {
    display: grid;
    gap: 18px;
}

.home-opening-calculator__step {
    min-width: 0;
    margin: 0;
    padding: 20px;
    border: 1px solid #e4e4e4;
    border-radius: 18px;
    background: #f8f8f6;
}

.home-opening-calculator__step legend {
    width: auto;
    margin: 0 0 14px;
    padding: 0;
    border: 0;
    color: #1c1c1c;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.home-opening-calculator__step legend span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-right: 8px;
    border-radius: 50%;
    background: #202020;
    color: #f5b900;
    font-size: 12px;
}

.home-opening-calculator__options {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.home-opening-calculator__option {
    min-height: 42px;
    padding: 9px 14px;
    appearance: none;
    border: 1px solid #d8d8d8;
    border-radius: 999px;
    background: #fff;
    color: #242424;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-opening-calculator__option:hover,
.home-opening-calculator__option:focus {
    border-color: #c89a00;
    outline: none;
    transform: translateY(-1px);
}

.home-opening-calculator__option.is-selected {
    border-color: #f5b900;
    background: #f5b900;
    box-shadow: 0 5px 14px rgba(245, 185, 0, .18);
    color: #111;
}

.home-opening-calculator__result {
    position: sticky;
    top: 92px;
    padding: 28px;
    border-radius: 20px;
    background: #202020;
    box-shadow: 0 18px 40px rgba(10, 10, 10, .18);
    color: #fff;
}

.home-opening-calculator__result-label {
    display: block;
    margin-bottom: 8px;
    color: #bcbcbc;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.home-opening-calculator__price {
    display: block;
    margin-bottom: 12px;
    color: #f5b900;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.18;
}

.home-opening-calculator__result-text {
    min-height: 64px;
    margin: 0 0 23px;
    color: #ececec;
    font-size: 14px;
    line-height: 1.55;
}

.home-opening-calculator__summary {
    margin: 0 0 22px;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.home-opening-calculator__summary > div {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.home-opening-calculator__summary dt,
.home-opening-calculator__summary dd {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
}

.home-opening-calculator__summary dt {
    color: #999;
}

.home-opening-calculator__summary dd {
    color: #fff;
    font-weight: 600;
}

.home-opening-calculator__notice {
    margin-bottom: 22px;
    padding: 12px 14px;
    border-left: 3px solid #f5b900;
    background: rgba(255, 255, 255, .06);
    color: #d2d2d2;
    font-size: 12px;
    line-height: 1.5;
}

.home-opening-calculator__actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.home-opening-calculator__call {
    display: inline-flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 11px 16px;
    border: 2px solid #f5b900;
    border-radius: 4px;
    background: #f5b900;
    color: #111;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.home-opening-calculator__call:hover,
.home-opening-calculator__call:focus {
    border-color: #ffd23f;
    background: #ffd23f;
    color: #111;
    text-decoration: none;
}

.home-opening-calculator__messenger {
    display: inline-flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    background: #fff;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease;
}

.home-opening-calculator__messenger:hover,
.home-opening-calculator__messenger:focus {
    border-color: #f5b900;
    text-decoration: none;
    transform: translateY(-2px);
}

.home-opening-calculator__messenger--whatsapp {
    border-color: #20af5a;
    background: #20af5a;
    color: #fff;
    font-size: 26px;
}

.home-opening-calculator__messenger--whatsapp:hover,
.home-opening-calculator__messenger--whatsapp:focus {
    border-color: #16934a;
    background: #16934a;
    color: #fff;
}

@media (max-width: 991px) {
    .home-situations__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-opening-calculator__layout {
        grid-template-columns: 1fr;
    }

    .home-prices__layout {
        grid-template-columns: minmax(0, 1.35fr) minmax(280px, .85fr);
    }

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

    .home-safe-opening__layout {
        grid-template-columns: 1fr;
    }

    .home-opening-method__steps {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 760px;
        margin-right: auto;
        margin-left: auto;
    }

    .home-opening-method__steps::before {
        top: 34px;
        right: auto;
        bottom: 34px;
        left: 33px;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, #f5b900 0%, #dca600 100%);
    }

    .home-opening-method__step {
        display: grid;
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 20px;
        padding-bottom: 28px;
    }

    .home-opening-method__step:last-child {
        padding-bottom: 0;
    }

    .home-opening-method__marker {
        margin: 0;
    }

    .home-opening-method__content {
        padding: 3px 0 0;
        text-align: left;
    }

    .home-opening-method__content h3,
    .home-opening-method__content p {
        min-height: 0;
    }

    .home-work-cases__grid {
        grid-template-columns: 1fr;
    }

    .home-work-case:last-child:nth-child(odd) {
        grid-column: auto;
    }

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

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

    .home-master-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .home-opening-calculator__result {
        position: static;
    }
}

@media (max-width: 767px) {
    .home-situations {
        padding: 58px 0;
    }

    .home-situations__head {
        margin-bottom: 28px;
        text-align: left;
    }

    .home-situations__head h2 {
        font-size: 31px;
    }

    .home-situations__head p {
        font-size: 15px;
    }

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

    .home-situation-card {
        min-height: 330px;
        padding: 24px;
    }

    .home-situations__cta {
        align-items: stretch;
        flex-direction: column;
        padding: 22px;
    }

    .home-situations__cta-button {
        width: 100%;
    }

    .home-prices {
        padding: 58px 0;
    }

    .home-prices__head {
        margin-bottom: 28px;
        text-align: left;
    }

    .home-prices__head h2 {
        font-size: 30px;
    }

    .home-prices__head p {
        font-size: 15px;
    }

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

    .home-prices__card--list,
    .home-prices__card--factors {
        padding: 22px 19px;
    }

    .home-prices__row {
        gap: 12px;
    }

    .home-prices__row > span {
        font-size: 13px;
    }

    .home-prices__row > strong {
        font-size: 14px;
    }

    .home-prices__cta {
        align-items: stretch;
        flex-direction: column;
        padding: 22px;
    }

    .home-prices__photo-channels {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
        min-width: 0;
        gap: 11px;
        padding: 15px;
    }

    .home-prices__photo-channels .home-hero__messengers {
        width: auto;
        padding-left: 33px;
    }

    .home-lock-types {
        padding: 58px 0;
    }

    .home-lock-types__head {
        margin-bottom: 28px;
        text-align: left;
    }

    .home-lock-types__head h2 {
        font-size: 30px;
    }

    .home-lock-types__head p {
        font-size: 15px;
    }

    .home-lock-types__grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .home-lock-type-card {
        min-height: 0;
    }

    .home-lock-type-card__media {
        height: 190px;
    }

    .home-lock-type-card__body {
        padding: 23px 22px 22px;
    }

    .home-lock-types__cta {
        align-items: stretch;
        flex-direction: column;
        padding: 22px;
    }

    .home-lock-types__cta-button {
        width: 100%;
    }

    .home-safe-opening {
        padding: 58px 0;
    }

    .home-safe-opening__head {
        margin-bottom: 28px;
        text-align: left;
    }

    .home-safe-opening__head h2 {
        font-size: 30px;
    }

    .home-safe-opening__head p {
        font-size: 15px;
    }

    .home-safe-opening__layout {
        gap: 18px;
    }

    .home-safe-opening__content,
    .home-safe-opening__factors {
        padding: 22px 19px;
    }

    .home-safe-opening__situation,
    .home-safe-opening__important {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 11px;
    }

    .home-safe-opening__important {
        padding: 16px 14px;
    }

    .home-safe-opening__final {
        padding: 16px;
    }

    .home-opening-method {
        padding: 58px 0;
    }

    .home-opening-method__head {
        text-align: left;
    }

    .home-opening-method__head h2 {
        font-size: 30px;
    }

    .home-opening-method__head p {
        font-size: 15px;
    }

    .home-opening-method__steps {
        margin-top: 30px;
    }

    .home-opening-method__step {
        gap: 15px;
        padding-bottom: 24px;
    }

    .home-opening-method__content h3 {
        font-size: 16px;
    }

    .home-opening-method__content p {
        font-size: 12px;
    }

    .home-opening-method__note {
        align-items: flex-start;
        justify-content: flex-start;
        margin-top: 28px;
        padding: 15px 16px;
        text-align: left;
    }

    .home-access-documents {
        padding: 58px 0;
    }

    .home-access-documents__head {
        margin-bottom: 28px;
        text-align: left;
    }

    .home-access-documents__head h2 {
        font-size: 30px;
    }

    .home-access-documents__head p {
        font-size: 15px;
    }

    .home-access-documents__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-access-documents__card {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 14px;
        min-height: 0;
        padding: 22px 19px;
    }

    .home-access-documents__icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .home-access-documents__card h3 {
        font-size: 17px;
    }

    .home-access-documents__important {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 11px;
        margin-top: 20px;
        padding: 16px 14px;
    }

    .home-work-cases {
        padding: 58px 0;
    }

    .home-work-cases__head {
        margin-bottom: 28px;
        text-align: left;
    }

    .home-work-cases__head h2 {
        font-size: 30px;
    }

    .home-work-cases__head p {
        font-size: 15px;
    }

    .home-work-cases__grid {
        gap: 17px;
    }

    .home-work-case {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .home-work-case__photos {
        height: 300px;
    }

    .home-work-case__content {
        padding: 23px 20px;
    }

    .home-work-case__content h3 {
        font-size: 19px;
    }

    .home-geography {
        padding: 58px 0;
    }

    .home-geography__head {
        margin-bottom: 28px;
        text-align: left;
    }

    .home-geography__head h2 {
        font-size: 30px;
    }

    .home-geography__head p {
        font-size: 15px;
    }

    .home-geography__facts {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-geography__facts > div {
        padding: 15px 16px;
    }

    .home-geography__note {
        margin-bottom: 22px;
    }

    .home-geography__navigator {
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .home-geography__tabs {
        display: none;
    }

    .home-geography__panels {
        padding: 0;
    }

    .home-geography--enhanced .home-geography__panel,
    .home-geography--enhanced .home-geography__panel:not(.is-active) {
        display: block;
    }

    .home-geography__panel,
    .home-geography--enhanced .home-geography__panel + .home-geography__panel {
        margin-top: 10px;
        padding-top: 0;
        border: 1px solid #dededb;
        border-radius: 15px;
        background: #fff;
    }

    .home-geography__panel:first-child {
        margin-top: 0;
    }

    .home-geography__mobile-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        min-height: 58px;
        padding: 14px 16px;
        border: 0;
        border-radius: 14px;
        background: #fff;
        color: #282828;
        font-size: 13px;
        font-weight: 800;
        line-height: 1.3;
        text-align: left;
    }

    .home-geography__mobile-trigger span {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .home-geography__mobile-trigger span i {
        color: #b88900;
        font-size: 16px;
    }

    .home-geography__mobile-trigger > i {
        color: #8a8a8a;
        transition: transform .2s ease;
    }

    .home-geography__mobile-trigger.is-active {
        border-radius: 14px 14px 0 0;
        background: #171717;
        color: #fff;
    }

    .home-geography__mobile-trigger.is-active span i {
        color: #f5b900;
    }

    .home-geography__mobile-trigger.is-active > i {
        color: #f5b900;
        transform: rotate(180deg);
    }

    .home-geography--enhanced .home-geography__panel:not(.is-active) .home-geography__panel-body {
        display: none;
    }

    .home-geography__panel-body {
        padding: 18px 15px 20px;
        border-top: 1px solid #e6e6e2;
    }

    .home-geography__panel-body h3 {
        margin-bottom: 15px;
        font-size: 19px;
    }

    .home-geography__links {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .home-geography__links a {
        min-height: 46px;
        font-size: 12px;
    }

    .home-geography__all {
        margin-top: 18px;
    }

    .home-masters {
        padding: 58px 0;
    }

    .home-masters__head {
        margin-bottom: 28px;
        text-align: left;
    }

    .home-masters__head h2 {
        font-size: 30px;
    }

    .home-masters__head p {
        font-size: 15px;
    }

    .home-masters__grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .home-master-card:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .home-master-card__body {
        padding: 23px 20px;
    }

    .home-master-card__body h3 {
        font-size: 21px;
    }

    .home-opening-calculator {
        margin: 0 -5px 48px;
        padding: 24px 18px;
        border-radius: 20px;
    }

    .home-opening-calculator__head h2 {
        font-size: 29px;
    }

    .home-opening-calculator__step {
        padding: 17px;
    }

    .home-opening-calculator__options {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .home-opening-calculator__option {
        width: 100%;
        border-radius: 12px;
        text-align: left;
    }

    .home-opening-calculator__result {
        padding: 24px 20px;
    }

    .home-opening-calculator__price {
        font-size: 27px;
    }

    .home-opening-calculator__actions {
        flex-wrap: wrap;
    }

    .home-opening-calculator__call {
        flex-basis: 100%;
    }
}
