.feature-page {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 8%, rgba(96, 165, 250, 0.18) 0, transparent 28rem),
        radial-gradient(circle at 92% 12%, rgba(251, 191, 36, 0.20) 0, transparent 26rem),
        radial-gradient(circle at 12% 68%, rgba(52, 211, 153, 0.11) 0, transparent 27rem),
        radial-gradient(circle at 88% 76%, rgba(167, 139, 250, 0.14) 0, transparent 30rem),
        linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px),
        linear-gradient(180deg, #f9fbff 0%, #f4f7fc 48%, #eef3f9 100%);
    background-size:
        auto,
        auto,
        auto,
        auto,
        56px 56px,
        56px 56px,
        auto;
}

.feature-hero {
    position: relative;
    padding: 34px 0 92px;
    background: transparent;
}

.feature-hero::after {
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.08);
    content: "";
}

.feature-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 42px;
    color: var(--text-muted);
    font-size: 14px;
}

.feature-breadcrumbs a {
    color: #1d4ed8;
    text-decoration: none;
}

.feature-breadcrumbs a:hover {
    text-decoration: underline;
}

.feature-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    align-items: center;
    gap: 74px;
}

.feature-hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.feature-hero h1 {
    max-width: 710px;
    margin: 18px 0 24px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.feature-hero__lead {
    max-width: 680px;
    margin: 0;
    color: #475569;
    font-size: 20px;
    line-height: 1.65;
}

.feature-checks {
    display: grid;
    gap: 12px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.feature-checks li {
    position: relative;
    padding-left: 34px;
    font-size: 16px;
    font-weight: 700;
}

.feature-checks li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 50%;
    background: #fff7ed;
    color: #d97706;
    content: "✓";
    font-size: 13px;
    box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.25);
}

.feature-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.feature-actions .button {
    min-height: 50px;
    padding: 14px 23px;
}

.feature-phone {
    position: relative;
    z-index: 1;
    width: min(100%, 370px);
    margin: 0 auto;
    padding: 10px;
    border: 7px solid #111827;
    border-radius: 44px;
    background: #111827;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.25);
    transform: rotate(3deg);
}

.feature-phone__screen {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 360 / 675;
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.5), transparent 18rem),
        linear-gradient(145deg, #bfdbfe 0%, #ddd6fe 45%, #fed7aa 100%);
}

.feature-phone__status {
    display: flex;
    justify-content: space-between;
    padding: 15px 23px 0;
    color: #111827;
    font-size: 12px;
    font-weight: 800;
}

.feature-phone__content {
    display: flex;
    width: 100%;
    height: calc(100% - 30px);
    min-height: 0;
    flex-direction: column;
    align-items: center;
    padding: 30px 18px 25px;
}

.feature-phone__date {
    color: rgba(15, 23, 42, 0.7);
    font-size: 14px;
    font-weight: 700;
}

.feature-phone__time {
    margin-top: 2px;
    color: #0f172a;
    font-size: 66px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.feature-notification {
    display: grid;
    width: 100%;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    margin-top: 42px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(18px);
}

.feature-notification__icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(145deg, #fbbf24, #f59e0b);
    color: #111827;
    font-size: 21px;
    font-weight: 900;
}

.feature-notification__content {
    min-width: 0;
}

.feature-notification__content > span {
    display: block;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.feature-notification__content strong {
    display: block;
    margin-top: 4px;
    color: #0f172a;
    font-size: 14px;
    line-height: 1.3;
}

.feature-notification__content p {
    margin: 4px 0 0;
    color: #475569;
    font-size: 12px;
    line-height: 1.45;
}

.feature-phone__hint {
    margin-top: auto;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    color: #334155;
    font-size: 11px;
    font-weight: 750;
    backdrop-filter: blur(12px);
}

.feature-section {
    padding: 92px 0;
}

.feature-section--light {
    background: transparent;
}

.feature-heading {
    max-width: 800px;
    margin: 0 auto 44px;
    text-align: center;
}

.feature-heading--left {
    margin: 0;
    text-align: left;
}

.feature-heading h2,
.feature-link-block h2,
.feature-price-card h2,
.feature-final-cta h2 {
    margin: 12px 0 16px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.feature-heading p,
.feature-link-block p,
.feature-price-card__content p,
.feature-final-cta p {
    margin: 0;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.72;
}

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

.feature-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.feature-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 15px;
    background: #fff7ed;
    color: #d97706;
    font-size: 21px;
    font-weight: 900;
}

.feature-card__icon--blue {
    background: #eff6ff;
    color: #2563eb;
}

.feature-card__icon--violet {
    background: #f5f3ff;
    color: #7c3aed;
}

.feature-card h3 {
    margin: 22px 0 10px;
    font-size: 20px;
    line-height: 1.3;
}

.feature-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.68;
}

.feature-split {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
    gap: 80px;
}

.feature-steps {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-steps li {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
}

.feature-steps li > span {
    color: #d97706;
    font-size: 18px;
    font-weight: 900;
}

.feature-steps h3 {
    margin: 0 0 7px;
    font-size: 18px;
}

.feature-steps p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
}

.feature-section--accent {
    background: #172554;
    color: #fff;
}

.feature-link-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    align-items: center;
    gap: 70px;
}

.feature-link-block .eyebrow {
    color: #fbbf24;
}

.feature-link-block p {
    color: #cbd5e1;
}

.feature-link-example {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
}

.feature-link-example > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 14px;
    background: #f59e0b;
    color: #111827;
    font-size: 11px;
    font-weight: 900;
}

.feature-link-example strong {
    font-size: 14px;
    line-height: 1.4;
}

.feature-link-example i {
    color: #fbbf24;
    font-size: 24px;
    font-style: normal;
}

.feature-link-example code {
    grid-column: 1 / -1;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.42);
    color: #bfdbfe;
    font-size: 13px;
    overflow-wrap: anywhere;
}

.feature-dashboard {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 0;
    max-width: 980px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.1);
}

.feature-dashboard__form,
.feature-dashboard__stats {
    padding: 34px;
}

.feature-dashboard__form {
    display: grid;
    gap: 10px;
    border-right: 1px solid var(--border);
}

.feature-dashboard__label {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 750;
}

.feature-dashboard__form strong,
.feature-dashboard__form p,
.feature-dashboard__form code {
    margin: 0;
    padding: 12px 14px;
    border: 1px solid #dbe3ef;
    border-radius: 11px;
    color: #334155;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.45;
}

.feature-dashboard__button {
    justify-self: start;
    margin-top: 12px;
    padding: 12px 18px;
    border-radius: 10px;
    background: #f59e0b;
    color: #111827;
    font-size: 13px;
    font-weight: 800;
}

.feature-dashboard__stats {
    display: grid;
    align-content: center;
    gap: 16px;
    background: #f8fafc;
}

.feature-dashboard__stats div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.feature-dashboard__stats span {
    color: var(--text-muted);
    font-size: 13px;
}

.feature-dashboard__stats strong {
    font-size: 17px;
}

.feature-dashboard__stats .is-success {
    color: #047857;
}

.feature-dashboard__stats p {
    margin: 8px 0 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
}

.feature-price-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: center;
    gap: 60px;
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.feature-price-card__offer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    border-radius: 22px;
    background: #172554;
    color: #fff;
}

.feature-price-card__price {
    color: #fbbf24;
    font-size: 43px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
}

.feature-price-card__offer strong {
    margin-top: 15px;
    font-size: 18px;
}

.feature-price-card__offer > span:not(.feature-price-card__price) {
    margin-top: 5px;
    color: #cbd5e1;
    font-size: 14px;
}

.feature-price-card__offer .button {
    margin-top: 24px;
}

.feature-faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: 70px;
}

.feature-faq {
    display: grid;
    gap: 12px;
}

.feature-faq details {
    border: 1px solid var(--border);
    border-radius: 17px;
    background: #fff;
}

.feature-faq summary {
    position: relative;
    padding: 20px 54px 20px 22px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    list-style: none;
}

.feature-faq summary::-webkit-details-marker {
    display: none;
}

.feature-faq summary::after {
    position: absolute;
    top: 50%;
    right: 22px;
    color: #d97706;
    content: "+";
    font-size: 25px;
    font-weight: 500;
    transform: translateY(-50%);
}

.feature-faq details[open] summary::after {
    content: "−";
}

.feature-faq details p {
    margin: -3px 22px 0;
    padding: 0 0 20px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.feature-final-cta {
    padding: 0 0 92px;
}

.feature-final-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 20%, rgba(251, 191, 36, 0.2), transparent 22rem),
        #172554;
    color: #fff;
}

.feature-final-cta h2 {
    max-width: 700px;
    margin-bottom: 10px;
}

.feature-final-cta p {
    color: #cbd5e1;
}

.feature-final-cta .button {
    flex: 0 0 auto;
}

.bottom-navigation-hero {
    background: transparent;
}

.bottom-navigation-phone .feature-phone__screen {
    display: flex;
    flex-direction: column;
    background: #f8fafc;
}

.bottom-navigation-phone__status {
    display: flex;
    flex: 0 0 auto;
    justify-content: space-between;
    padding: 15px 23px 8px;
    background: #ffffff;
    color: #111827;
    font-size: 12px;
    font-weight: 800;
}

.bottom-navigation-phone__site {
    display: flex;
    min-height: 0;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 18px;
    padding: 12px 16px 16px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.bottom-navigation-phone__site-header {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.bottom-navigation-phone__logo {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    background: #f59e0b;
    color: #111827;
    font-size: 16px;
    font-weight: 900;
}

.bottom-navigation-phone__site-header strong {
    font-size: 14px;
}

.bottom-navigation-phone__menu {
    color: #64748b;
    font-size: 20px;
}

.bottom-navigation-phone__banner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 19px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 90% 10%, rgba(251, 191, 36, 0.28), transparent 11rem),
        #172554;
    color: #ffffff;
}

.bottom-navigation-phone__banner > span {
    color: #fbbf24;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bottom-navigation-phone__banner strong {
    max-width: 230px;
    margin-top: 9px;
    font-size: 20px;
    line-height: 1.2;
}

.bottom-navigation-phone__banner i {
    margin-top: 17px;
    padding: 9px 12px;
    border-radius: 9px;
    background: #f59e0b;
    color: #111827;
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
}

.bottom-navigation-phone__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.bottom-navigation-phone__cards span {
    height: 108px;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    background:
        linear-gradient(#e2e8f0 0 0) 14px 65px / 70% 7px no-repeat,
        linear-gradient(#f1f5f9 0 0) 14px 81px / 48% 6px no-repeat,
        linear-gradient(145deg, #dbeafe, #fef3c7);
}

.bottom-navigation-phone__panel {
    display: grid;
    flex: 0 0 auto;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    border-top: 1px solid #e2e8f0;
    background: #ffffff;
}

.bottom-navigation-phone__item {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 2px 7px;
    color: rgba(17, 24, 39, 0.5);
}

.bottom-navigation-phone__item img {
    display: block;
    width: 23px;
    height: 23px;
    opacity: 0.5;
    object-fit: contain;
}

.bottom-navigation-phone__item small {
    max-width: 100%;
    overflow: hidden;
    font-size: 8px;
    font-weight: 700;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bottom-navigation-phone__item.is-active {
    background: #fff7ed;
    color: #b45309;
}

.bottom-navigation-phone__item.is-active img {
    opacity: 1;
}

.bottom-navigation-phone__system-bar {
    display: flex;
    min-height: 31px;
    flex: 0 0 31px;
    align-items: center;
    justify-content: center;
    gap: 46px;
    background: #353940;
}

.bottom-navigation-phone__system-square {
    width: 10px;
    height: 10px;
    border: 1.6px solid #ffffff;
    border-radius: 1px;
}

.bottom-navigation-phone__system-circle {
    width: 11px;
    height: 11px;
    border: 1.6px solid #ffffff;
    border-radius: 50%;
}

.bottom-navigation-phone__system-triangle {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-right: 10px solid #ffffff;
    border-bottom: 6px solid transparent;
}

.bottom-navigation-settings {
    align-items: center;
}

.bottom-navigation-settings__card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.bottom-navigation-settings__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.bottom-navigation-settings__heading strong {
    font-size: 20px;
}

.bottom-navigation-settings__heading span {
    color: var(--text-muted);
    font-size: 12px;
    text-align: right;
}

.bottom-navigation-settings__switches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
}

.bottom-navigation-settings__switches span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 11px;
    border-radius: 10px;
    background: #f8fafc;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
}

.bottom-navigation-settings__switches i {
    position: relative;
    width: 28px;
    height: 16px;
    border-radius: 999px;
    background: #f59e0b;
}

.bottom-navigation-settings__switches i::after {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    content: "";
}

.bottom-navigation-settings__colors {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-bottom: 20px;
}

.bottom-navigation-settings__colors > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.bottom-navigation-settings__colors span {
    color: var(--text-muted);
    font-size: 12px;
}

.bottom-navigation-settings__colors strong {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
}

.bottom-navigation-settings__colors i {
    width: 18px;
    height: 18px;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
}

.bottom-navigation-settings__colors .is-white {
    background: #ffffff;
}

.bottom-navigation-settings__colors .is-dark {
    background: #111827;
}

.bottom-navigation-settings__items {
    display: grid;
    gap: 9px;
}

.bottom-navigation-settings__items > div {
    display: grid;
    grid-template-columns: 25px 28px minmax(90px, 0.7fr) minmax(110px, 1fr);
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 11px;
    background: #f8fafc;
}

.bottom-navigation-settings__items span {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
}

.bottom-navigation-settings__items img {
    width: 23px;
    height: 23px;
    object-fit: contain;
}

.bottom-navigation-settings__items strong,
.bottom-navigation-settings__items code {
    font-size: 12px;
}

.bottom-navigation-settings__items code {
    color: #64748b;
    overflow-wrap: anywhere;
}

.bottom-navigation-actions {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
    gap: 70px;
}

.bottom-navigation-actions .eyebrow {
    color: #fbbf24;
}

.bottom-navigation-actions h2 {
    margin: 12px 0 16px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.bottom-navigation-actions > div > p {
    margin: 0;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.72;
}

.bottom-navigation-actions__list {
    display: grid;
    gap: 12px;
}

.bottom-navigation-actions__list article {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.bottom-navigation-actions__list img {
    width: 30px;
    height: 30px;
    padding: 8px;
    box-sizing: content-box;
    border-radius: 13px;
    background: #ffffff;
    object-fit: contain;
}

.bottom-navigation-actions__list strong,
.bottom-navigation-actions__list span,
.bottom-navigation-actions__list code {
    display: block;
}

.bottom-navigation-actions__list strong {
    font-size: 15px;
}

.bottom-navigation-actions__list span,
.bottom-navigation-actions__list code {
    margin-top: 4px;
    color: #cbd5e1;
    font-family: inherit;
    font-size: 12px;
}

@media (max-width: 980px) {
    .feature-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
        gap: 42px;
    }

    .feature-hero h1 {
        font-size: clamp(40px, 6vw, 56px);
    }

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

    .feature-card:last-child {
        grid-column: 1 / -1;
    }

    .feature-split,
    .feature-link-block,
    .feature-faq-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .feature-price-card {
        gap: 34px;
        padding: 38px;
    }

    .bottom-navigation-actions {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}

@media (max-width: 780px) {
    .feature-hero {
        padding-bottom: 72px;
    }

    .feature-breadcrumbs {
        margin-bottom: 32px;
    }

    .feature-hero__grid {
        grid-template-columns: 1fr;
    }

    .feature-phone {
        width: min(100%, 350px);
        margin-top: 16px;
    }

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

    .feature-dashboard,
    .feature-price-card {
        grid-template-columns: 1fr;
    }

    .feature-dashboard__form {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .feature-final-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .bottom-navigation-settings__colors {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .feature-hero {
        padding: 24px 0 58px;
    }

    .feature-breadcrumbs {
        margin-bottom: 25px;
        font-size: 13px;
    }

    .feature-hero h1 {
        margin: 14px 0 18px;
        font-size: 39px;
        line-height: 1.05;
    }

    .feature-hero__lead {
        font-size: 17px;
        line-height: 1.6;
    }

    .feature-checks {
        margin-top: 24px;
    }

    .feature-actions {
        display: grid;
        margin-top: 30px;
    }

    .feature-actions .button {
        width: 100%;
    }

    .feature-phone {
        width: min(100%, 330px);
    }

    .feature-phone__content {
        padding-inline: 14px;
    }

    .feature-phone__time {
        font-size: 58px;
    }

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

    .feature-heading {
        margin-bottom: 30px;
        text-align: left;
    }

    .feature-heading h2,
    .feature-link-block h2,
    .feature-price-card h2,
    .feature-final-cta h2 {
        font-size: 32px;
    }

    .feature-card-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feature-card:last-child {
        grid-column: auto;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-steps li {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        padding: 20px;
    }

    .feature-link-example {
        grid-template-columns: 42px minmax(0, 1fr) auto;
        padding: 18px;
    }

    .feature-dashboard__form,
    .feature-dashboard__stats {
        padding: 24px;
    }

    .feature-price-card {
        padding: 20px;
        border-radius: 22px;
    }

    .feature-price-card__offer {
        padding: 24px;
    }

    .feature-price-card__price {
        font-size: 38px;
    }

    .feature-final-cta {
        padding-bottom: 58px;
    }

    .feature-final-cta__inner {
        padding: 28px 24px;
        border-radius: 22px;
    }

    .feature-final-cta .button {
        width: 100%;
    }

    .bottom-navigation-phone__site {
        gap: 14px;
        padding-inline: 13px;
    }

    .bottom-navigation-phone__banner {
        padding: 20px 16px;
    }

    .bottom-navigation-phone__banner strong {
        font-size: 18px;
    }

    .bottom-navigation-phone__cards span {
        height: 92px;
    }

    .bottom-navigation-phone__item img {
        width: 21px;
        height: 21px;
    }

    .bottom-navigation-phone__item small {
        font-size: 7px;
    }

    .bottom-navigation-settings__card {
        padding: 20px;
    }

    .bottom-navigation-settings__heading,
    .bottom-navigation-settings__colors > div {
        align-items: flex-start;
        flex-direction: column;
    }

    .bottom-navigation-settings__heading span {
        text-align: left;
    }

    .bottom-navigation-settings__items > div {
        grid-template-columns: 22px 25px minmax(0, 1fr);
    }

    .bottom-navigation-settings__items code {
        grid-column: 3;
    }
}
