:root {
    --green-950: #0c2417;
    --green-900: #123722;
    --green-800: #17492d;
    --green-700: #1f6840;
    --green-600: #2f8a52;
    --mint-500: #75d6a0;
    --mint-200: #dff7e8;
    --cream-100: #fff9eb;
    --cream-200: #f6efd9;
    --sky-100: #e8f7fb;
    --white: #ffffff;
    --text: #183126;
    --muted: #65776d;
    --line: rgba(23, 73, 45, 0.13);
    --shadow-soft: 0 22px 70px rgba(18, 55, 34, 0.13);
    --shadow-card: 0 16px 42px rgba(18, 55, 34, 0.11);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    color: var(--text);
    font-family: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 8% 10%, rgba(117, 214, 160, 0.26), transparent 28rem),
        radial-gradient(circle at 90% 4%, rgba(232, 247, 251, 0.82), transparent 26rem),
        linear-gradient(180deg, #fffdf5 0%, #f4fbf1 42%, #eef8f7 100%);
}

main,
.hero {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.43;
    background-image:
        linear-gradient(rgba(23, 73, 45, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 73, 45, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.section-pad {
    padding: 76px 0;
    position: relative;
}

.site-header {
    position: fixed;
    top: 12px;
    right: max(12px, calc((100vw - 1180px) / 2));
    left: max(12px, calc((100vw - 1180px) / 2));
    z-index: 20;
    width: auto;
    margin: 0;
    padding: 10px;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto minmax(250px, 1fr);
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    background: #fffefa;
    box-shadow: 0 14px 42px rgba(18, 55, 34, 0.12);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    color: var(--green-900);
}

.brand__logo {
    width: 145px;
    height: auto;
    flex: 0 0 auto;
}

.brand__descriptor {
    color: var(--green-800);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.42;
    letter-spacing: -0.02em;
    text-align: right;
}

.header-nav,
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.header-nav {
    justify-content: center;
}

.header-actions {
    justify-content: flex-end;
}

.header-link {
    display: inline-flex;
    padding: 10px 12px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.btn {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn::after {
    content: "";
    position: absolute;
    inset: -3px;
    z-index: -1;
    border-radius: inherit;
    opacity: 0;
    background: radial-gradient(circle, rgba(117, 214, 160, 0.6), transparent 68%);
    transition: opacity 0.22s ease;
}

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

.btn:hover::after {
    opacity: 1;
}

.btn--small {
    min-height: 40px;
    padding: 10px 15px;
    font-size: 13px;
}

.btn--large {
    min-height: 58px;
    padding: 17px 24px;
    font-size: 16px;
}

.btn--primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--green-700), var(--green-600));
    box-shadow: 0 16px 34px rgba(31, 104, 64, 0.26);
}

.btn--secondary {
    color: var(--green-900);
    border: 1px solid rgba(31, 104, 64, 0.22);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 28px rgba(18, 55, 34, 0.09);
}

.btn--ghost {
    color: var(--green-900);
    background: rgba(223, 247, 232, 0.72);
}

.btn--light {
    color: var(--green-900);
    background: var(--white);
    box-shadow: 0 15px 34px rgba(12, 36, 23, 0.18);
}

.hero {
    min-height: calc(100vh - 72px);
    display: grid;
    align-items: center;
    padding-top: 138px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;
    align-items: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: var(--green-700);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    max-width: 760px;
    margin: 0;
    color: var(--green-950);
    font-size: clamp(42px, 9vw, 84px);
    line-height: 0.93;
    letter-spacing: -0.07em;
}

h2 {
    margin: 0;
    color: var(--green-950);
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -0.055em;
}

h3 {
    margin: 0;
    color: var(--green-950);
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.hero__lead,
.section-head p,
.photo__content > p,
.garden .section-head p,
.final-cta p {
    color: var(--muted);
    font-size: clamp(17px, 2.2vw, 21px);
    line-height: 1.55;
}

.hero__lead {
    max-width: 690px;
    margin: 24px 0 0;
}

.hero__actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero__actions--center {
    justify-content: center;
}

.hero__actions--hero {
    margin-top: 0;
}

.hero__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column: 1 / -1;
    gap: 9px;
    margin-top: 0;
}

.hero__features a {
    display: grid;
    min-height: 48px;
    padding: 10px 13px;
    place-items: center;
    border: 1px solid rgba(31, 104, 64, 0.16);
    border-radius: var(--radius-md);
    color: var(--green-900);
    background: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
}

.hero__features a:hover,
.hero__features a:focus-visible {
    border-color: rgba(31, 104, 64, 0.28);
    background: rgba(234, 249, 238, 0.96);
}

.hero__visual {
    position: relative;
    display: grid;
    place-items: center;
}

.hero__app-image {
    width: min(100%, 426px);
    height: auto;
    max-height: min(650px, calc(100vh - 180px));
    object-fit: contain;
    filter: drop-shadow(0 22px 44px rgba(18, 55, 34, 0.16));
}

.phone-shell {
    width: min(350px, 82vw);
    min-height: 610px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 42px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 247, 251, 0.76));
    box-shadow: var(--shadow-soft);
}

.phone-shell__top {
    width: 72px;
    height: 7px;
    margin: 4px auto 12px;
    border-radius: 99px;
    background: rgba(12, 36, 23, 0.18);
}

.phone-screen {
    height: 555px;
    overflow: hidden;
    border-radius: 31px;
    background:
        linear-gradient(180deg, rgba(223, 247, 232, 0.88), rgba(255, 249, 235, 0.92)),
        radial-gradient(circle at 50% 20%, rgba(117, 214, 160, 0.42), transparent 45%);
}

.phone-screen img,
.screen-card img,
.feature-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-fallback {
    position: relative;
}

.image-fallback:not(.is-missing) .fallback-card,
.image-fallback:not(.is-missing) .visual-placeholder {
    display: none;
}

.image-fallback.is-missing img {
    display: none;
}

.fallback-card,
.visual-placeholder {
    position: absolute;
    inset: 18px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 26px;
    color: var(--green-900);
    text-align: center;
    background:
        radial-gradient(circle at 50% 18%, rgba(117, 214, 160, 0.34), transparent 42%),
        rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(10px);
}

.fallback-card p {
    margin: 0;
    color: var(--muted);
}

.fallback-card__icon,
.visual-placeholder {
    font-size: 54px;
}

.floating-note {
    position: absolute;
    max-width: 170px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    color: var(--green-900);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(14px);
    font-size: 13px;
    font-weight: 900;
}

.floating-note--left {
    left: 0;
    bottom: 96px;
}

.floating-note--right {
    right: 0;
    top: 86px;
}

.ambient {
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(4px);
}

.ambient--one {
    width: 300px;
    height: 300px;
    left: -110px;
    top: 70px;
    background: rgba(117, 214, 160, 0.22);
}

.ambient--two {
    width: 260px;
    height: 260px;
    right: -80px;
    bottom: 120px;
    background: rgba(178, 229, 241, 0.36);
}

.ambient--three {
    width: 260px;
    height: 260px;
    right: -70px;
    top: -90px;
    background: rgba(255, 255, 255, 0.22);
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-head--center {
    margin-inline: auto;
    text-align: center;
}

.problem-grid,
.chat-grid,
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

/* The problem section is kept in markup for a later return, but is not shown now. */
.problem {
    display: none;
}

/* The feature section is kept in markup for a later return, but is not shown now. */
.features {
    display: none;
}

.mini-card,
.feature-card,
.step-card,
.chat-card,
.analysis-cards article,
.plant-board article,
.trust-card,
.final-cta__card,
.screen-card {
    border: 1px solid rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.66);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
}

.mini-card,
.step-card,
.chat-card {
    min-height: 190px;
    padding: 24px;
    border-radius: var(--radius-lg);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.mini-card:hover,
.feature-card:hover,
.step-card:hover,
.chat-card:hover,
.plant-board article:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(18, 55, 34, 0.15);
}

.mini-card__icon,
.chat-card span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--mint-200), var(--sky-100));
    font-size: 28px;
}

.mini-card__icon {
    flex: 0 0 auto;
    margin-bottom: 0;
}

.mini-card__heading {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
}

.mini-card p,
.feature-card p,
.step-card p,
.chat-card p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

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

.feature-card {
    display: grid;
    gap: 20px;
    padding: 22px;
    border-radius: var(--radius-xl);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.feature-card__label {
    display: inline-flex;
    width: max-content;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--green-800);
    background: rgba(223, 247, 232, 0.9);
    font-size: 13px;
    font-weight: 900;
}

.feature-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.feature-card li {
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--green-900);
    background: rgba(246, 239, 217, 0.75);
    font-size: 13px;
    font-weight: 800;
}

.feature-card__image {
    min-height: 220px;
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--mint-200), var(--sky-100));
}

.steps-grid {
    counter-reset: steps;
}

.step-card span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--green-700), var(--mint-500));
    font-weight: 900;
}

.section-actions {
    justify-content: center;
}

.photo__grid,
.garden__grid,
.chat__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: center;
}

.mobile-section-layout {
    display: none;
}

.analysis-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
}

.analysis-cards article {
    padding: 20px;
    border-radius: 22px;
}

.analysis-cards strong,
.analysis-cards span {
    display: block;
}

.analysis-cards strong {
    margin-bottom: 8px;
    color: var(--green-900);
    font-size: 20px;
}

.analysis-cards span {
    color: var(--muted);
    line-height: 1.5;
}

.screen-pair {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.screen-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(150deg, var(--sky-100), var(--cream-100));
}

.screen-card img {
    object-fit: contain;
}

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

.plant-board article {
    min-height: 142px;
    padding: 18px;
    border-radius: 24px;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.plant-board span {
    display: block;
    margin-bottom: 16px;
    font-size: 34px;
}

.plant-board strong,
.plant-board small {
    display: block;
}

.plant-board strong {
    color: var(--green-950);
    font-size: 18px;
}

.plant-board small {
    margin-top: 7px;
    color: var(--muted);
    line-height: 1.35;
}

.trust-card {
    display: grid;
    gap: 24px;
    padding: 28px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(223, 247, 232, 0.68)),
        rgba(255, 255, 255, 0.55);
}

.trust-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
}

.trust-list span {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--green-900);
    background: rgba(255, 255, 255, 0.7);
    font-weight: 900;
}

.trust-list span::before {
    content: "✓ ";
    color: var(--green-600);
}

.final-cta__card {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 7vw, 72px);
    border-radius: 38px;
    color: var(--white);
    text-align: center;
    background:
        radial-gradient(circle at 12% 0%, rgba(117, 214, 160, 0.62), transparent 34%),
        linear-gradient(135deg, var(--green-950), var(--green-700));
}

.final-cta__card h2 {
    color: var(--white);
}

.final-cta__card p {
    max-width: 660px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer {
    padding: 34px 0 46px;
    color: var(--muted);
}

.site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 800;
}

.site-footer a {
    color: var(--green-700);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.72s ease, transform 0.72s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.floaty {
    animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@media (min-width: 620px) {
    .problem-grid,
    .chat-grid,
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plant-board {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .screen-card--lower {
        margin-top: 54px;
    }
}

@media (min-width: 820px) {
    .hero__grid {
        grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.74fr);
        grid-template-areas:
            "copy visual"
            "actions visual"
            "features features";
        row-gap: 24px;
    }

    .hero__copy {
        grid-area: copy;
    }

    .hero__actions--hero {
        grid-area: actions;
    }

    .hero__visual {
        grid-area: visual;
    }

    .hero__features {
        grid-area: features;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .problem-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .feature-card--wide {
        grid-column: span 3;
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
        align-items: center;
    }

    .steps-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .photo__grid,
    .garden__grid,
    .chat__grid {
        grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
        align-items: stretch;
    }

    .photo .screen-pair,
    .garden .screen-pair,
    .chat .screen-pair {
        align-self: stretch;
        align-items: stretch;
        gap: 18px;
        height: 100%;
    }

    .photo .screen-card,
    .garden .screen-card,
    .chat .screen-card {
        display: flex;
        align-items: stretch;
        justify-content: center;
        min-height: 0;
        height: 100%;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .photo .screen-card--lower,
    .garden .screen-card--lower,
    .chat .screen-card--lower {
        margin-top: 0;
    }

    .photo .screen-card img,
    .garden .screen-card img,
    .chat .screen-card img {
        display: block;
        width: auto;
        max-width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* The desktop chat carousel keeps one screen in reserve. */
    .chat__screens[data-desktop-carousel] {
        cursor: pointer;
    }

    .chat__screens[data-desktop-carousel] [data-carousel-card][hidden] {
        display: none !important;
    }

    .chat__screens[data-desktop-carousel]:focus-visible {
        outline: 3px solid rgba(45, 135, 82, 0.45);
        outline-offset: 6px;
    }

    .trust-card {
        grid-template-columns: minmax(0, 0.72fr) minmax(380px, 1fr);
        align-items: center;
    }

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

@media (max-width: 760px) {
    .site-header {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-height: 58px;
        padding: 7px 12px;
        border-radius: 18px;
    }

    .brand__logo {
        width: 122px;
    }

    .brand {
        width: 100%;
        justify-content: space-between;
    }

    .brand__descriptor {
        font-size: 11px;
    }

    .header-nav,
    .header-actions {
        display: none;
    }

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

    .steps,
    .photo,
    .garden,
    .chat {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .photo > .photo__grid,
    .garden > .garden__grid,
    .chat > .container:not(.mobile-section-layout) {
        display: none;
    }

    .mobile-section-layout {
        display: block;
    }

    .mobile-section-layout .section-head {
        margin-bottom: 22px;
    }

    .mobile-info-badges {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .mobile-info-badges article {
        min-width: 0;
        padding: 14px 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.72);
    }

    .mobile-info-badges strong,
    .mobile-info-badges span {
        display: block;
    }

    .mobile-info-badges strong,
    .mobile-chat-topic > strong {
        color: var(--green-900);
        font-size: 16px;
        line-height: 1.18;
    }

    .mobile-info-badges span,
    .mobile-chat-layout__lead {
        margin-top: 7px;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.42;
    }

    .mobile-screen {
        width: 100%;
        margin: 22px auto 0;
    }

    .mobile-screen--pair {
        width: 100%;
        max-width: 560px;
    }

    .mobile-screen img {
        display: block;
        width: 100%;
        height: auto;
    }

    .mobile-switcher {
        margin-top: 22px;
    }

    .mobile-click-carousel {
        margin-top: 22px;
        cursor: pointer;
        touch-action: pan-y;
    }

    .mobile-click-carousel:focus-visible {
        outline: 3px solid rgba(45, 135, 82, 0.45);
        outline-offset: 5px;
    }

    .mobile-switcher__tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .mobile-switcher__tabs button {
        min-width: 0;
        padding: 12px 10px;
        border: 1px solid var(--line);
        border-radius: var(--radius-md);
        color: var(--green-900);
        background: rgba(255, 255, 255, 0.68);
        font: inherit;
        text-align: left;
        cursor: pointer;
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .mobile-switcher__tabs button.is-active {
        border-color: var(--green-700);
        color: var(--white);
        background: var(--green-700);
    }

    .mobile-switcher__tabs strong,
    .mobile-switcher__tabs span {
        display: block;
    }

    .mobile-switcher__tabs strong {
        font-size: 16px;
        line-height: 1.18;
    }

    .mobile-switcher__tabs span {
        margin-top: 6px;
        font-size: 13px;
        line-height: 1.35;
    }

    .mobile-switcher__stage {
        margin-top: 16px;
        touch-action: pan-y;
    }

    .mobile-switcher__slide {
        width: 100%;
        margin: 0;
    }

    .mobile-switcher__slide img {
        display: block;
        width: 100%;
        height: auto;
    }

    .mobile-photo-layout .mobile-switcher__slide img {
        width: min(88vw, 420px);
        margin-inline: auto;
    }

    .mobile-switcher--compact {
        margin-top: 18px;
    }

    .mobile-switcher--compact .mobile-switcher__tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .mobile-switcher--compact .mobile-switcher__tabs button {
        min-height: 42px;
        padding: 8px 4px;
        font-size: 13px;
        font-weight: 800;
        text-align: center;
    }

    .mobile-chat-layout__lead {
        margin-bottom: 0;
    }

    .steps .step-card {
        min-height: 0;
        padding: 16px;
    }

    .steps .step-card p {
        margin-top: 8px;
        line-height: 1.45;
    }

    .problem {
        display: none;
    }

    .steps .section-head--center {
        margin-inline: 0;
        text-align: left;
    }

    .steps .section-actions {
        justify-content: flex-start;
    }

    .step-card__heading {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .step-card span {
        flex: 0 0 auto;
        margin-bottom: 0;
    }

    .mini-card {
        min-height: 128px;
        padding: 14px 10px;
        display: grid;
        place-items: center;
        align-content: center;
        text-align: center;
    }

    .mini-card__heading {
        display: grid;
        justify-items: center;
        gap: 9px;
        min-height: 0;
    }

    .mini-card h3 {
        font-size: 16px;
        line-height: 1.15;
        letter-spacing: -0.02em;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .mini-card p {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 104px;
    }

    .hero__actions .btn,
    .section-actions .btn {
        width: 100%;
    }

    .hero__visual {
        min-height: 0;
    }

    .hero__app-image {
        width: min(88vw, 420px);
        max-height: none;
    }
}

@media (max-width: 430px) {
    .container {
        width: min(100% - 22px, var(--container));
    }

    .site-header {
        right: 8px;
        left: 8px;
        width: auto;
        gap: 8px;
    }

    .btn--small {
        min-height: 38px;
        font-size: 12px;
    }

    .plant-board {
        grid-template-columns: 1fr;
    }
}

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