/* Файл хранит стили минималистичного сайта со свайпом и полноэкранными темами. */

:root {
    --topbar-height: 68px;
    --bottom-nav-space: 86px;
    --page: #f4f7f8;
    --surface: #ffffff;
    --surface-soft: #f8fbfa;
    --text: #111417;
    --muted: #5f6872;
    --line: #dde6e7;
    --accent: #0f766e;
    --accent-dark: #115e59;
    --accent-soft: #d9f4ef;
    --warm: #9f6b1f;
    --ink: #172023;
    --ink-soft: #edf1f2;
    --danger: #b42318;
    --success: #087443;
    --shadow: 0 22px 70px rgba(20, 29, 38, 0.10);
    --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

a,
button,
label,
.custom-select-trigger,
.custom-select-option,
.topic-progress-button,
.bottom-nav-button,
.nav-link,
.topic-cta {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.06) 0 1px, transparent 1px 100%),
        linear-gradient(180deg, #ffffff 0%, var(--page) 42%, #edf4f6 100%);
    background-size: 22px 22px, auto;
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

button:focus {
    outline: none;
}

button:focus-visible {
    outline: 3px solid rgba(15, 118, 110, 0.28);
    outline-offset: 3px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: var(--topbar-height);
    padding: 0 max(24px, calc((100vw - 1180px) / 2));
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 900;
    letter-spacing: 0;
}

.brand::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
}

.nav {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(78px, 1fr));
    align-items: center;
    gap: 8px;
    padding: 3px;
    border: 1px solid rgba(221, 230, 231, 0.9);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
    overflow: hidden;
}

.nav::before {
    content: "";
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 3px;
    z-index: 0;
    width: calc((100% - 14px) / 2);
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(20, 29, 38, 0.08);
    transition: transform 460ms var(--motion-ease);
}

body[data-current-view="order"] .nav::before {
    transform: translateX(calc(100% + 8px));
}

.nav-link {
    position: relative;
    z-index: 1;
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: color 280ms ease, transform 280ms var(--motion-ease);
}

.nav-link.is-active {
    background: transparent;
    color: var(--text);
    transform: translateY(-1px);
}

.nav-link:focus-visible,
.bottom-nav-button:focus-visible {
    outline-offset: -4px;
}

.swipe-viewport {
    width: 100%;
    height: calc(100svh - var(--topbar-height));
    overflow: hidden;
    touch-action: pan-y;
}

.screen-track,
.screen,
.topic-scroll,
.topic-panel,
.order-screen {
    touch-action: pan-y;
}

.screen-track {
    display: flex;
    width: 200%;
    height: 100%;
    transition: transform 620ms var(--motion-ease);
    will-change: transform;
}

body[data-current-view="order"] .screen-track {
    transform: translateX(-50%);
}

.screen {
    width: 50%;
    min-width: 50%;
    height: 100%;
    overflow: hidden;
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    transition:
        opacity 520ms ease,
        transform 620ms var(--motion-ease),
        filter 520ms ease;
    will-change: opacity, transform, filter;
}

body[data-current-view="info"] .order-screen,
body[data-current-view="order"] .info-screen {
    opacity: 0.18;
    transform: scale(0.985);
    filter: blur(2px);
    pointer-events: none;
}

.info-screen {
    position: relative;
}

.topic-scroll {
    height: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overscroll-behavior: contain;
    scrollbar-width: none;
}

.topic-scroll::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.topic-panel {
    display: grid;
    align-items: center;
    min-height: 100%;
    height: 100%;
    overflow: hidden;
    padding: clamp(28px, 5svh, 54px) max(24px, calc((100vw - 1180px) / 2)) calc(var(--bottom-nav-space) + env(safe-area-inset-bottom));
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.topic-panel:nth-child(even) {
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.08), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(238, 246, 246, 0.72));
}

.topic-content {
    width: min(1180px, 100%);
    margin: 0 auto;
    isolation: isolate;
}

.topic-panel.is-visible .topic-content {
    animation: topicSwitchIn 620ms var(--motion-ease) both;
}

.hero-layout,
.topic-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(24px, 5vw, 78px);
    align-items: center;
}

.topic-copy,
.focus-panel {
    opacity: 0;
    transform: translateY(22px) scale(0.99);
    transition:
        opacity 620ms ease,
        transform 620ms var(--motion-ease);
}

.topic-panel.is-visible .topic-copy,
.topic-panel.is-visible .focus-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
.topic-copy h2 {
    max-width: 780px;
    margin-bottom: 16px;
    font-size: clamp(42px, 7.4vw, 86px);
    line-height: 0.96;
    font-weight: 900;
    letter-spacing: 0;
}

.topic-copy h2 {
    font-size: clamp(38px, 6.4vw, 72px);
}

.lead,
.topic-copy p {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 22px);
}

.signal-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.signal-row span {
    min-height: 34px;
    padding: 7px 13px;
    border: 1px solid rgba(15, 118, 110, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #114640;
    font-size: 14px;
    font-weight: 800;
}

.focus-panel {
    display: grid;
    gap: 18px;
    padding: clamp(20px, 3vw, 30px);
    border: 1px solid rgba(15, 118, 110, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 251, 250, 0.76));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.focus-head span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin-bottom: 12px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.10);
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
}

.focus-head strong {
    display: block;
    max-width: 520px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.04;
    letter-spacing: 0;
}

.focus-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.focus-list li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 10px 12px;
    border: 1px solid rgba(15, 118, 110, 0.13);
    border-radius: 8px;
    background:
        linear-gradient(180deg, #ffffff, #f8fbfb);
}

.focus-list b {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    font-size: 12px;
}

.focus-list span {
    color: #2b3439;
    font-weight: 700;
    line-height: 1.25;
}

.topic-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 2px;
    padding: 12px 18px;
    border: 0;
    border-radius: 8px;
    background:
        linear-gradient(135deg, var(--accent), #123f42);
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.topic-progress {
    --topic-dot-size: 9px;
    --topic-dot-gap: 10px;
    position: absolute;
    top: 50%;
    right: max(18px, calc((100vw - 1180px) / 2 - 40px));
    z-index: 5;
    display: grid;
    gap: var(--topic-dot-gap);
    transform: translateY(-50%);
}

.topic-progress-button {
    width: var(--topic-dot-size);
    height: var(--topic-dot-size);
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(98, 106, 115, 0.34);
    cursor: pointer;
    transition:
        width 430ms var(--motion-ease),
        height 430ms var(--motion-ease),
        background 300ms ease,
        opacity 300ms ease,
        transform 430ms var(--motion-ease);
    will-change: width, height, transform;
}

.topic-progress-button.is-active {
    height: 28px;
    background: var(--accent);
    box-shadow: 0 10px 22px rgba(15, 118, 110, 0.22);
}

.order-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(18px, 4svh, 42px) max(24px, calc((100vw - 1180px) / 2)) calc(var(--bottom-nav-space) + env(safe-area-inset-bottom));
}

.order-form {
    display: grid;
    gap: clamp(10px, 1.55svh, 16px);
    width: min(100%, 540px);
    max-height: 100%;
    padding: clamp(18px, 2.8svh, 28px);
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 253, 252, 0.96));
    box-shadow: var(--shadow);
    opacity: 1;
    transform: none;
    transition:
        opacity 560ms ease,
        transform 620ms var(--motion-ease);
}

body[data-current-view="info"] .order-form {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
}

.form-head .eyebrow {
    display: none;
}

.form-head h2 {
    margin-bottom: 0;
    font-size: clamp(24px, 4.8vw, 34px);
    line-height: 1.08;
    text-align: center;
}

.field {
    display: grid;
    gap: 5px;
}

.field > span {
    color: #303841;
    font-size: 12px;
    font-weight: 800;
}

.field > input,
.field > select,
.field > textarea {
    width: 100%;
    min-height: clamp(38px, 5.2svh, 46px);
    padding: 8px 10px;
    border: 1px solid rgba(15, 118, 110, 0.16);
    border-radius: 8px;
    background: var(--surface-soft);
    color: var(--text);
    font-size: clamp(13px, 2.7vw, 15px);
    outline: none;
}

.field > textarea {
    min-height: clamp(74px, 10svh, 112px);
    max-height: clamp(74px, 10svh, 112px);
    resize: none;
}

.field > input:focus,
.field > select:focus,
.field > textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.custom-select {
    position: relative;
    min-width: 0;
}

.custom-select.is-open {
    z-index: 20;
}

.field .custom-select-native {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    min-height: 1px;
    padding: 0;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.custom-select-trigger {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: clamp(38px, 5.2svh, 46px);
    padding: 8px 10px;
    border: 1px solid rgba(15, 118, 110, 0.16);
    border-radius: 8px;
    background: var(--surface-soft);
    color: var(--text);
    font-size: clamp(13px, 2.7vw, 15px);
    text-align: left;
    cursor: pointer;
    transition:
        border-color 220ms ease,
        background 220ms ease,
        box-shadow 220ms ease;
}

.custom-select-trigger:hover {
    border-color: rgba(15, 118, 110, 0.34);
    background: #ffffff;
}

.custom-select-trigger:focus-visible,
.custom-select.is-open .custom-select-trigger {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.custom-select-value {
    min-width: 0;
    overflow: hidden;
    color: var(--text);
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select-value.is-placeholder {
    color: #737d85;
    font-weight: 400;
}

.custom-select-chevron {
    position: relative;
    width: 18px;
    height: 18px;
}

.custom-select-chevron::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    transition: transform 280ms var(--motion-ease);
}

.custom-select.is-open .custom-select-chevron::before {
    transform: translateY(3px) rotate(225deg);
}

.custom-select-menu {
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
    left: 0;
    z-index: 30;
    display: grid;
    gap: 3px;
    max-height: min(240px, 34svh);
    padding: 6px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(15, 118, 110, 0.20);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 42px rgba(20, 29, 38, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-7px) scale(0.985);
    transform-origin: top center;
    pointer-events: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(15, 118, 110, 0.34) transparent;
    transition:
        opacity 180ms ease,
        transform 240ms var(--motion-ease),
        visibility 0s linear 240ms;
}

.custom-select.is-drop-up .custom-select-menu {
    top: auto;
    bottom: calc(100% + 7px);
    transform: translateY(7px) scale(0.985);
    transform-origin: bottom center;
}

.custom-select.is-open .custom-select-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    transition-delay: 0s;
}

.custom-select-option {
    position: relative;
    width: 100%;
    min-height: 38px;
    padding: 8px 30px 8px 10px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #2b3439;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
    transition:
        background 160ms ease,
        color 160ms ease;
}

.custom-select-option:hover,
.custom-select-option:focus-visible,
.custom-select-option.is-highlighted {
    outline: none;
    background: #edf7f5;
    color: var(--accent-dark);
}

.custom-select-option.is-selected {
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-weight: 800;
}

.custom-select-option.is-selected::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 13px;
    width: 5px;
    height: 9px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: translateY(-60%) rotate(45deg);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(8px, 1.4svh, 12px);
}

.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.submit-button {
    min-height: clamp(40px, 5.8svh, 48px);
    padding: 9px 14px;
    border: 0;
    border-radius: 8px;
    background:
        linear-gradient(135deg, var(--accent), #123f42);
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(15, 118, 110, 0.22);
}

.submit-button:hover {
    background: var(--accent-dark);
}

.submit-button:disabled {
    cursor: wait;
    opacity: 0.68;
}

.form-status {
    min-height: 16px;
    max-height: 34px;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.2;
}

.form-status.is-error {
    color: var(--danger);
}

.form-status.is-success {
    color: var(--success);
}

.status-popup {
    position: fixed;
    left: 50%;
    top: calc(14px + env(safe-area-inset-top));
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 11px;
    width: min(430px, calc(100% - 28px));
    min-height: 50px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: rgba(17, 32, 35, 0.74);
    box-shadow: 0 18px 52px rgba(20, 29, 38, 0.22);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -12px) scale(0.98);
    pointer-events: none;
    backdrop-filter: blur(18px) saturate(1.18);
    transition:
        opacity 220ms ease,
        transform 280ms var(--motion-ease),
        visibility 0s linear 220ms;
}

.status-popup::before {
    content: "";
    flex: 0 0 auto;
    width: 8px;
    height: 28px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.16);
}

.status-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
    transition-delay: 0s;
}

.status-popup.is-error {
    border-color: rgba(255, 210, 205, 0.34);
    background: rgba(72, 28, 25, 0.76);
}

.status-popup.is-success {
    border-color: rgba(196, 245, 221, 0.34);
    background: rgba(17, 64, 45, 0.76);
}

.status-popup.is-error::before {
    background: var(--danger);
    box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.18);
}

.status-popup.is-success::before {
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(8, 116, 67, 0.18);
}

.bottom-nav {
    position: fixed;
    left: 50%;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: min(430px, calc(100% - 28px));
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
    transform: translateX(-50%);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.bottom-nav::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 8px;
    z-index: 0;
    width: calc((100% - 24px) / 2);
    border-radius: 999px;
    background:
        linear-gradient(135deg, var(--accent), #123f42);
    box-shadow: 0 10px 22px rgba(15, 118, 110, 0.22);
    transition: transform 460ms var(--motion-ease);
}

body[data-current-view="order"] .bottom-nav::before {
    transform: translateX(calc(100% + 8px));
}

.bottom-nav-button {
    position: relative;
    z-index: 1;
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-weight: 800;
    cursor: pointer;
    transition: color 280ms ease, transform 280ms var(--motion-ease);
}

.bottom-nav-button.is-active {
    background: transparent;
    color: #ffffff;
    transform: translateY(-1px);
}

@keyframes topicSwitchIn {
    0% {
        opacity: 0.78;
        transform: translateY(18px) scale(0.99);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 980px) {
    .hero-layout,
    .topic-layout {
        grid-template-columns: 1fr;
    }

    .focus-panel {
        width: min(100%, 720px);
    }
}

@media (max-width: 680px) {
    :root {
        --topbar-height: 52px;
        --bottom-nav-space: 70px;
    }

    .topbar {
        padding: 0 16px;
    }

    .brand {
        font-size: 15px;
    }

    .nav {
        display: none;
    }

    .topic-panel {
        padding: clamp(14px, 3svh, 24px) 14px calc(var(--bottom-nav-space) + env(safe-area-inset-bottom));
    }

    .topic-content {
        display: grid;
        align-content: center;
        gap: 18px;
        height: 100%;
    }

    .topic-layout,
    .hero-layout {
        gap: 18px;
    }

    .topic-copy h1,
    .topic-copy h2,
    h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .lead,
    .topic-copy p {
        font-size: 16px;
    }

    .signal-row {
        margin-top: 18px;
    }

    .focus-panel {
        gap: 12px;
        padding: 16px;
    }

    .focus-head strong {
        font-size: 23px;
    }

    .focus-list {
        gap: 8px;
    }

    .focus-list li {
        grid-template-columns: 36px minmax(0, 1fr);
        min-height: 48px;
        padding: 8px 10px;
    }

    .focus-list b {
        width: 30px;
        height: 30px;
    }

    .focus-list span {
        font-size: 14px;
    }

    .topic-progress {
        top: auto;
        right: 50%;
        bottom: calc(var(--bottom-nav-space) + 8px + env(safe-area-inset-bottom));
        display: flex;
        transform: translateX(50%);
    }

    .topic-progress-button.is-active {
        width: 28px;
        height: var(--topic-dot-size);
    }

    .order-screen {
        padding: clamp(8px, 2svh, 16px) 12px calc(var(--bottom-nav-space) + env(safe-area-inset-bottom));
    }

    .order-form {
        gap: clamp(8px, 1.35svh, 13px);
        padding: clamp(14px, 2.3svh, 22px);
    }

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

    .bottom-nav {
        bottom: calc(10px + env(safe-area-inset-bottom));
        padding: 6px;
    }

    .bottom-nav::before {
        top: 6px;
        bottom: 6px;
        left: 6px;
        width: calc((100% - 20px) / 2);
    }

    .bottom-nav-button {
        min-height: 42px;
    }
}

@media (max-width: 360px), (max-height: 620px) {
    :root {
        --bottom-nav-space: 64px;
    }

    .topic-panel {
        padding-top: 10px;
    }

    .topic-copy h1,
    .topic-copy h2,
    h1 {
        font-size: 31px;
    }

    .lead,
    .topic-copy p {
        font-size: 14px;
    }

    .signal-row span {
        min-height: 30px;
        padding: 5px 10px;
        font-size: 12px;
    }

    .focus-panel {
        gap: 8px;
        padding: 12px;
    }

    .focus-head span {
        margin-bottom: 8px;
    }

    .focus-head strong {
        font-size: 19px;
    }

    .focus-list li {
        min-height: 40px;
        padding: 6px 8px;
    }

    .focus-list span {
        font-size: 12px;
    }

    .topic-cta {
        min-height: 38px;
        padding: 8px 12px;
    }

    .field {
        gap: 0;
    }

    .field > span {
        display: none;
    }

    .field > input,
    .field > select,
    .field > textarea,
    .custom-select-trigger {
        min-height: 32px;
        padding: 6px 8px;
        font-size: 12px;
    }

    .field > textarea {
        min-height: 50px;
        max-height: 50px;
    }

    .custom-select-option {
        min-height: 34px;
        padding-top: 7px;
        padding-bottom: 7px;
        font-size: 12px;
    }

    .submit-button {
        min-height: 36px;
    }
}

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