.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-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__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-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-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-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%;
    }
}
