:root {
    --blue-50: #edf6ff;
    --blue-100: #dcecff;
    --blue-200: #b9d8ff;
    --blue-500: #3182f6;
    --blue-600: #1b64da;
    --blue-700: #1553b8;
    --navy: #191f28;
    --gray-900: #191f28;
    --gray-800: #333d4b;
    --gray-700: #4e5968;
    --gray-600: #6b7684;
    --gray-500: #8b95a1;
    --gray-400: #b0b8c1;
    --gray-300: #d1d6db;
    --gray-200: #e5e8eb;
    --gray-100: #f2f4f6;
    --gray-50: #f7f8fa;
    --white: #fff;
    --danger-soft: #fff1f3;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 36px;
    --shadow-soft: 0 18px 60px rgba(31, 57, 92, 0.1);
    --shadow-window: 0 28px 80px rgba(27, 100, 218, 0.17);
    --container: 1180px;
    --header-height: 76px;
    color-scheme: light;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--gray-900);
    background: var(--white);
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    word-break: keep-all;
}

.brand-term,
.nowrap {
    white-space: nowrap;
}

body.is-menu-open {
    overflow: hidden;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

button {
    color: inherit;
}

a {
    color: inherit;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    border-radius: 10px;
    color: var(--white);
    background: var(--gray-900);
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid rgba(49, 130, 246, 0.35);
    outline-offset: 3px;
}

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

.section {
    position: relative;
    padding: 118px 0;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
    border-color: rgba(209, 214, 219, 0.7);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 32px rgba(25, 31, 40, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    color: var(--gray-900);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.45px;
    text-decoration: none;
}

.brand img {
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(49, 130, 246, 0.2);
}

.brand small {
    margin-left: -4px;
    padding: 5px 8px;
    border-radius: 999px;
    color: var(--blue-600);
    background: var(--blue-50);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.2px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 7px;
}

.site-nav > a:not(.button) {
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.site-nav > a:not(.button):hover {
    color: var(--gray-900);
    background: var(--gray-100);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    background: var(--gray-100);
    cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    width: 21px;
    height: 2px;
    margin: 4px auto;
    border-radius: 3px;
    background: var(--gray-800);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button-small {
    min-height: 42px;
    margin-left: 8px;
    padding: 0 18px;
    border-radius: 12px;
    font-size: 13px;
}

.button-large {
    min-height: 58px;
    padding: 0 26px;
    border-radius: 17px;
    font-size: 16px;
}

.button {
    white-space: nowrap;
}

.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, #3b8cff 0%, var(--blue-500) 48%, var(--blue-600) 100%);
    box-shadow: 0 10px 24px rgba(49, 130, 246, 0.24);
}

.button-primary:hover {
    box-shadow: 0 16px 34px rgba(49, 130, 246, 0.31);
}

.button-ghost {
    color: var(--gray-800);
    background: rgba(242, 244, 246, 0.95);
}

.button-ghost:hover {
    background: var(--gray-200);
}

.button-white {
    color: var(--blue-600);
    background: var(--white);
    box-shadow: 0 14px 38px rgba(10, 49, 116, 0.18);
}

.button-glass {
    border: 1px solid rgba(255, 255, 255, 0.38);
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 38px rgba(10, 49, 116, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.button-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-download {
    letter-spacing: -0.02em;
}

.download-icon {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 15px;
    line-height: 1;
}

.hero {
    min-height: 820px;
    padding-top: 176px;
    padding-bottom: 112px;
    overflow: hidden;
    background:
        linear-gradient(180deg, #fff 0%, #fafdff 55%, var(--blue-50) 100%);
}

.hero::before {
    position: absolute;
    top: 90px;
    left: 50%;
    width: 980px;
    height: 760px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(49, 130, 246, 0.11), rgba(49, 130, 246, 0) 67%);
    content: "";
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.7;
    pointer-events: none;
}

.hero-orb-one {
    top: 140px;
    right: -140px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 35% 35%, rgba(123, 184, 255, 0.42), rgba(49, 130, 246, 0.05) 70%);
}

.hero-orb-two {
    bottom: 80px;
    left: -160px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle at 60% 45%, rgba(27, 100, 218, 0.13), rgba(49, 130, 246, 0) 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(540px, 1.02fr);
    align-items: center;
    gap: 56px;
}

.hero-copy,
.hero-visual {
    position: relative;
    z-index: 1;
}

.eyebrow,
.section-kicker {
    margin: 0 0 20px;
    color: var(--blue-600);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border: 1px solid rgba(49, 130, 246, 0.14);
    border-radius: 999px;
    background: rgba(237, 246, 255, 0.88);
}

.eyebrow span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue-500);
    box-shadow: 0 0 0 5px rgba(49, 130, 246, 0.12);
}

.hero h1,
.section-heading h2,
.answer-box h2,
.room-section h2,
.faq-heading h2 {
    margin: 0;
    color: var(--gray-900);
    font-weight: 900;
    letter-spacing: -0.055em;
}

.hero h1 {
    font-size: clamp(45px, 4vw, 58px);
    line-height: 1.13;
    text-wrap: balance;
}

.hero-title-line {
    display: block;
    white-space: nowrap;
}

.hero h1 strong,
.section-heading h2 strong,
.room-section h2 strong,
.faq-heading h2 strong,
.use-copy h2 strong {
    color: var(--blue-500);
}

.hero-description {
    max-width: 560px;
    margin: 26px 0 0;
    color: var(--gray-700);
    font-size: 18px;
    line-height: 1.78;
    letter-spacing: -0.025em;
    text-wrap: pretty;
}

.hero-description > span {
    display: block;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 17px 0 0;
    color: var(--gray-600);
    font-size: 13px;
}

.hero-note span {
    display: inline-grid;
    place-items: center;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    color: var(--blue-600);
    background: var(--blue-100);
    font-size: 11px;
    font-weight: 900;
}

.hero-flow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 36px 0 0;
    padding: 0;
    color: var(--gray-700);
    list-style: none;
}

.hero-flow li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 750;
    white-space: nowrap;
}

.hero-flow li + li::before {
    margin-right: 1px;
    color: var(--gray-400);
    content: "→";
}

.hero-flow span {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 8px;
    color: var(--blue-600);
    background: var(--blue-100);
    font-size: 11px;
    font-weight: 900;
}

.hero-visual {
    padding: 34px 12px 28px 0;
}

.app-window {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 220, 244, 0.8);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-window);
    transform: perspective(1500px) rotateY(-2deg) rotateX(1deg);
}

.app-window::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.window-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 42px;
    padding: 0 16px;
    color: var(--gray-600);
    background: linear-gradient(180deg, #fff, #f7faff);
    font-size: 11px;
}

.window-bar b {
    justify-self: end;
    color: var(--blue-500);
    font-size: 10px;
}

.window-dots {
    display: flex;
    gap: 5px;
}

.window-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gray-300);
}

.window-dots span:first-child {
    background: #ff8085;
}

.window-dots span:nth-child(2) {
    background: #ffc55c;
}

.window-dots span:nth-child(3) {
    background: #64d29b;
}

.app-window > img {
    width: 100%;
    height: auto;
}

.visual-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    color: var(--gray-800);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(31, 57, 92, 0.12);
    backdrop-filter: blur(12px);
    font-size: 12px;
    font-weight: 850;
}

.visual-badge-top {
    top: 0;
    right: -8px;
}

.visual-badge-bottom {
    bottom: 0;
    left: -24px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #15c47e;
    box-shadow: 0 0 0 5px rgba(21, 196, 126, 0.12);
}

.badge-icon {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 9px;
    color: var(--white);
    background: var(--blue-500);
}

.answer-section {
    background: var(--white);
}

.answer-box {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.68fr);
    gap: 48px;
    align-items: start;
    padding: 54px 58px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 92% 20%, rgba(49, 130, 246, 0.14), transparent 30%),
        var(--gray-50);
}

.answer-box .section-kicker {
    grid-column: 1;
    margin-top: 9px;
}

.answer-box h2 {
    grid-column: 1;
    margin-top: -42px;
    font-size: 34px;
    line-height: 1.25;
    white-space: nowrap;
}

.answer-box > p:last-child {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
    color: var(--gray-700);
    font-size: 18px;
    line-height: 1.85;
    letter-spacing: -0.025em;
    text-wrap: pretty;
}

.answer-box > p strong {
    color: var(--gray-900);
    font-weight: 850;
}

.question-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.question-card {
    position: relative;
    min-height: 228px;
    padding: 34px 32px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.question-card:hover {
    border-color: var(--blue-200);
    box-shadow: 0 18px 48px rgba(31, 57, 92, 0.09);
    transform: translateY(-5px);
}

.card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 28px;
    border-radius: 9px;
    color: var(--blue-600);
    background: var(--blue-50);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.question-card h3 {
    margin: 30px 0 12px;
    font-size: 22px;
    letter-spacing: -0.04em;
}

.question-card p {
    margin: 0;
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
}

.room-section {
    overflow: hidden;
    background: var(--gray-50);
}

.room-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    gap: 84px;
}

.section-heading h2,
.room-section h2,
.faq-heading h2,
.use-copy h2 {
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1.2;
    text-wrap: balance;
}

.section-heading > p:last-child,
.room-section .section-heading > p:last-of-type,
.faq-heading > p:last-of-type,
.use-copy > .use-description {
    margin: 24px 0 0;
    color: var(--gray-600);
    font-size: 17px;
    line-height: 1.8;
    text-wrap: pretty;
}

.check-list {
    display: grid;
    gap: 13px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--gray-800);
    font-size: 15px;
    font-weight: 750;
}

.check-list span {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 25px;
    height: 25px;
    border-radius: 9px;
    color: var(--blue-600);
    background: var(--blue-100);
    font-size: 12px;
    font-weight: 900;
}

.room-demo {
    position: relative;
    padding: 24px;
    border: 1px solid rgba(229, 232, 235, 0.9);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
}

.room-demo::before {
    position: absolute;
    z-index: -1;
    top: -70px;
    right: -110px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(49, 130, 246, 0.13);
    content: "";
    filter: blur(6px);
}

.demo-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 4px 18px;
    color: var(--gray-600);
    font-size: 12px;
    font-weight: 700;
}

.demo-toolbar strong {
    color: var(--blue-600);
    font-weight: 850;
}

.demo-row {
    display: grid;
    grid-template-columns: 28px 42px 1fr auto;
    align-items: center;
    gap: 12px;
    margin-top: 9px;
    padding: 16px 17px;
    border: 1px solid var(--gray-200);
    border-radius: 17px;
    background: var(--white);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.demo-row:hover,
.demo-row.is-active {
    border-color: var(--blue-200);
    background: #fbfdff;
    transform: translateX(4px);
}

.demo-check {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    color: var(--white);
    background: var(--blue-500);
    font-size: 12px;
    font-weight: 900;
}

.demo-avatar {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: var(--blue-700);
    background: var(--blue-100);
    font-size: 14px;
    font-weight: 900;
}

.demo-avatar-blue {
    color: #0f7b66;
    background: #dff8f0;
}

.demo-avatar-navy {
    color: #6554c0;
    background: #eeeaff;
}

.demo-info {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
}

.demo-info b {
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.demo-info small {
    color: var(--gray-500);
    font-size: 11px;
}

.demo-status,
.summary-pill {
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--blue-600);
    background: var(--blue-50);
    font-size: 10px;
    font-weight: 900;
}

.demo-status-ready {
    color: #0f7b66;
    background: #e5faf4;
}

.demo-status-done {
    color: #6554c0;
    background: #f0edff;
}

.demo-summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 17px;
    background: var(--gray-100);
    font-size: 12px;
}

.demo-summary > span:first-child {
    color: var(--gray-600);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 88px;
}

.feature-card {
    min-height: 258px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    box-shadow: 0 18px 48px rgba(31, 57, 92, 0.08);
    transform: translateY(-5px);
}

.feature-card-wide {
    display: flex;
    grid-column: span 2;
    gap: 24px;
    align-items: flex-start;
}

.feature-card-blue {
    border-color: transparent;
    color: var(--white);
    background: linear-gradient(145deg, #398cff 0%, #2476ec 46%, #1558c3 100%);
    box-shadow: 0 18px 40px rgba(49, 130, 246, 0.19);
}

.feature-card-soft {
    border-color: #dbeaff;
    background:
        radial-gradient(circle at 90% 10%, rgba(49, 130, 246, 0.15), transparent 37%),
        #f7fbff;
}

.feature-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    color: var(--blue-600);
    background: var(--blue-50);
    font-size: 16px;
    font-weight: 900;
}

.feature-card-blue .feature-icon {
    color: var(--white);
    background: rgba(255, 255, 255, 0.17);
}

.feature-card h3 {
    margin: 30px 0 12px;
    font-size: 20px;
    letter-spacing: -0.035em;
}

.feature-card-wide h3 {
    margin-top: 5px;
}

.feature-card p {
    margin: 0;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.75;
}

.feature-card-blue p {
    color: rgba(255, 255, 255, 0.82);
}

.screen-section {
    background: var(--white);
}

.section-heading-centered {
    max-width: 700px;
    margin: 0 auto 58px;
    text-align: center;
}

.section-heading-centered > p:last-child {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
}

.screen-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.screen-card {
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    color: inherit;
    background: var(--white);
    box-shadow: 0 12px 34px rgba(31, 57, 92, 0.07);
    text-align: left;
    cursor: zoom-in;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.screen-card:hover {
    border-color: var(--blue-200);
    box-shadow: 0 22px 54px rgba(31, 57, 92, 0.12);
    transform: translateY(-7px);
}

.screen-image {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--gray-100);
    aspect-ratio: 1.49 / 1;
}

.screen-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 62%, rgba(17, 34, 58, 0.28));
    content: "";
    opacity: 0;
    transition: opacity 0.25s ease;
}

.screen-card:hover .screen-image::after {
    opacity: 1;
}

.screen-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.35s ease;
}

.screen-card:hover .screen-image img {
    transform: scale(1.025);
}

.zoom-label {
    position: absolute;
    z-index: 1;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 11px;
    border-radius: 10px;
    color: var(--white);
    background: rgba(25, 31, 40, 0.7);
    font-size: 10px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.screen-card:hover .zoom-label,
.screen-card:focus-visible .zoom-label {
    opacity: 1;
    transform: translateY(0);
}

.screen-copy {
    display: flex;
    min-height: 205px;
    padding: 26px 26px 29px;
    flex-direction: column;
}

.screen-copy small {
    margin-bottom: 15px;
    color: var(--blue-500);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.09em;
}

.screen-copy strong {
    color: var(--gray-900);
    font-size: 19px;
    line-height: 1.45;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.screen-copy > span {
    margin-top: 11px;
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.7;
    text-wrap: pretty;
}

.gallery-dots {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 22px;
}

.gallery-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: width 0.2s ease, background 0.2s ease, border-radius 0.2s ease;
}

.gallery-dots span.is-current {
    width: 20px;
    border-radius: 999px;
    background: var(--blue-500);
}

.how-section {
    background: linear-gradient(180deg, var(--gray-50), #fff);
}

.step-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.step-card {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
}

.step-number {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 15px;
    color: var(--blue-600);
    background: var(--blue-50);
    font-size: 15px;
    font-weight: 900;
}

.step-card h3 {
    margin: 48px 0 12px;
    font-size: 21px;
    letter-spacing: -0.035em;
}

.step-card p {
    margin: 0;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
}

.step-line {
    position: absolute;
    z-index: 2;
    top: 51px;
    left: calc(100% - 7px);
    width: 33px;
    height: 1px;
    background: var(--blue-200);
}

.use-section {
    padding-top: 70px;
    background: var(--white);
}

.use-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.use-copy h2 {
    margin: 0;
    letter-spacing: -0.055em;
}

.use-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 30px;
}

.use-tags span {
    padding: 10px 13px;
    border-radius: 999px;
    color: var(--gray-700);
    background: var(--gray-100);
    font-size: 12px;
    font-weight: 750;
}

.safety-card {
    display: flex;
    gap: 22px;
    padding: 40px;
    border: 1px solid #dceaff;
    border-radius: 30px;
    background:
        radial-gradient(circle at 100% 0, rgba(49, 130, 246, 0.12), transparent 34%),
        #f8fbff;
}

.safety-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 15px;
    color: var(--white);
    background: var(--blue-500);
    font-family: Georgia, serif;
    font-size: 19px;
    font-weight: 700;
}

.safety-card h3 {
    margin: 5px 0 12px;
    font-size: 22px;
}

.safety-card p {
    margin: 0;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.75;
}

.safety-card ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
    margin: 24px 0 0;
    padding: 0;
    color: var(--gray-700);
    list-style: none;
}

.safety-card li {
    position: relative;
    padding-left: 17px;
    font-size: 12px;
    line-height: 1.55;
}

.safety-card li::before {
    position: absolute;
    top: 7px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-500);
    content: "";
}

.faq-section {
    background: var(--gray-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: start;
    gap: 86px;
}

.faq-heading {
    position: sticky;
    top: calc(var(--header-height) + 42px);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    color: var(--blue-600);
    font-size: 15px;
    font-weight: 850;
    text-decoration: none;
}

.text-link:hover span {
    transform: translateX(4px);
}

.text-link span {
    transition: transform 0.2s ease;
}

.faq-list {
    overflow: hidden;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
}

.faq-list details + details {
    border-top: 1px solid var(--gray-200);
}

.faq-list summary {
    position: relative;
    display: grid;
    grid-template-columns: 30px 1fr 18px;
    align-items: center;
    gap: 12px;
    min-height: 86px;
    padding: 20px 25px;
    color: var(--gray-800);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.5;
    list-style: none;
    cursor: pointer;
    text-wrap: pretty;
}

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

.faq-list summary > span,
.faq-answer > span {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    color: var(--blue-600);
    background: var(--blue-50);
    font-size: 12px;
    font-weight: 900;
}

.faq-list summary i {
    position: relative;
    width: 18px;
    height: 18px;
}

.faq-list summary i::before,
.faq-list summary i::after {
    position: absolute;
    top: 8px;
    left: 3px;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: var(--gray-500);
    content: "";
    transition: transform 0.2s ease;
}

.faq-list summary i::after {
    transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
    transform: rotate(0);
}

.faq-list details[open] summary {
    color: var(--blue-600);
}

.faq-answer {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
    padding: 0 25px 26px;
}

.faq-answer > span {
    color: var(--gray-700);
    background: var(--gray-100);
}

.faq-answer p {
    margin: 4px 0 0;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.8;
    text-wrap: pretty;
}

.final-section {
    padding: 100px 0;
    background: var(--white);
}

.final-cta {
    position: relative;
    isolation: isolate;
    padding: 86px 42px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    color: var(--white);
    background:
        radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.19), transparent 28%),
        linear-gradient(135deg, #398cff 0%, #2478ee 42%, #1457bf 100%);
    box-shadow: 0 30px 70px rgba(27, 100, 218, 0.25);
    text-align: center;
}

.final-cta::before,
.final-cta::after {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    content: "";
}

.final-cta::before {
    top: -160px;
    right: -90px;
    width: 390px;
    height: 390px;
}

.final-cta::after {
    bottom: -260px;
    left: -100px;
    width: 470px;
    height: 470px;
}

.final-cta > p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.final-cta h2 {
    margin: 0;
    font-size: clamp(38px, 4.4vw, 58px);
    line-height: 1.2;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.final-cta > span {
    display: block;
    max-width: 570px;
    margin: 22px auto 34px;
    color: rgba(255, 255, 255, 0.78);
    text-wrap: pretty;
    font-size: 16px;
    line-height: 1.7;
}

.final-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.final-actions .button {
    min-width: 194px;
}

.site-footer {
    padding: 58px 0 34px;
    color: var(--gray-600);
    background: var(--gray-50);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 50px;
}

.footer-brand {
    font-size: 17px;
}

.footer-grid > div:first-child > p {
    max-width: 570px;
    margin: 19px 0 0;
    font-size: 13px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 22px;
    max-width: 430px;
}

.footer-links a {
    color: var(--gray-700);
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--blue-600);
}

.footer-notice {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
    margin-top: 42px;
    padding-top: 25px;
    border-top: 1px solid var(--gray-200);
}

.footer-notice p {
    max-width: 850px;
    margin: 0;
    color: var(--gray-500);
    font-size: 10px;
    line-height: 1.7;
}

.footer-notice > span {
    color: var(--gray-500);
    font-size: 10px;
    white-space: nowrap;
}

.floating-consult {
    position: fixed;
    z-index: 1100;
    right: 24px;
    bottom: calc(24px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    min-width: 184px;
    min-height: 70px;
    padding: 10px 14px 10px 10px;
    overflow: hidden;
    border: 1px solid rgba(25, 31, 40, 0.08);
    border-radius: 22px;
    color: #191919;
    background:
        radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.75), transparent 34%),
        linear-gradient(135deg, #ffef68 0%, #fee500 48%, #f5d900 100%);
    box-shadow:
        0 18px 48px rgba(74, 64, 0, 0.24),
        0 4px 14px rgba(74, 64, 0, 0.12);
    text-decoration: none;
    transform: translateZ(0);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-consult::before {
    position: absolute;
    top: -42px;
    right: -28px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.floating-consult:hover {
    box-shadow:
        0 23px 56px rgba(74, 64, 0, 0.28),
        0 6px 18px rgba(74, 64, 0, 0.14);
    transform: translateY(-3px);
}

.floating-consult:active {
    transform: translateY(-1px);
}

.floating-consult-icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(25, 25, 25, 0.06);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.floating-consult-bubble {
    position: relative;
    display: block;
    width: 28px;
    height: 21px;
    border-radius: 50%;
    background: #191919;
}

.floating-consult-bubble::before {
    position: absolute;
    bottom: -4px;
    left: 4px;
    width: 9px;
    height: 8px;
    border-radius: 0 0 0 8px;
    background: #191919;
    content: "";
    transform: rotate(-24deg);
}

.floating-consult-bubble::after {
    position: absolute;
    top: 1px;
    left: 5px;
    color: #fee500;
    content: "•••";
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 17px;
}

.floating-consult-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.floating-consult small {
    color: rgba(25, 25, 25, 0.6);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: -0.02em;
}

.floating-consult b {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.035em;
    white-space: nowrap;
}

.floating-consult i {
    position: relative;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
}

.screen-dialog {
    width: min(94vw, 1220px);
    max-width: none;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 22px;
    background: transparent;
}

.screen-dialog::backdrop {
    background: rgba(11, 18, 29, 0.82);
    backdrop-filter: blur(9px);
}

.screen-dialog figure {
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35);
}

.screen-dialog img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    background: var(--gray-100);
}

.screen-dialog figcaption {
    padding: 18px 22px;
    color: var(--gray-800);
    font-size: 14px;
    font-weight: 800;
}

.dialog-close {
    position: absolute;
    z-index: 1;
    top: -52px;
    right: 0;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0 0 3px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.reveal {
    opacity: 1;
    transform: none;
}

.js-ready .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1), transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.js-ready .reveal-delay {
    transition-delay: 0.12s;
}

.js-ready .reveal-delay-one {
    transition-delay: 0.08s;
}

.js-ready .reveal-delay-two {
    transition-delay: 0.16s;
}

.js-ready .reveal-delay-three {
    transition-delay: 0.24s;
}

@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
        gap: 38px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .room-grid,
    .use-grid {
        gap: 52px;
    }

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

    .feature-card-wide {
        grid-column: span 2;
    }

    .step-card {
        padding: 25px;
    }

    .site-nav {
        gap: 1px;
    }

    .site-nav > a:not(.button) {
        padding-right: 9px;
        padding-left: 9px;
        font-size: 13px;
    }

    .nav-download {
        margin-left: 3px;
        padding-right: 14px;
        padding-left: 14px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 68px;
    }

    .container {
        width: min(calc(100% - 40px), var(--container));
    }

    .section {
        padding: 92px 0;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        z-index: 1001;
        top: calc(var(--header-height) + 8px);
        right: 20px;
        left: 20px;
        display: grid;
        gap: 4px;
        padding: 12px;
        border: 1px solid var(--gray-200);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 22px 64px rgba(31, 57, 92, 0.18);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav > a:not(.button) {
        padding: 14px;
        font-size: 14px;
    }

    .site-nav .button {
        margin: 4px 0 0;
    }

    .nav-download {
        width: 100%;
        min-height: 48px;
    }

    .hero {
        min-height: auto;
        padding-top: 128px;
        padding-bottom: 86px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .hero-copy {
        max-width: 720px;
        text-align: center;
        justify-self: center;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions,
    .hero-note,
    .hero-flow {
        justify-content: center;
    }

    .hero-visual {
        width: min(100%, 760px);
        margin: 0 auto;
        padding-left: 12px;
    }

    .answer-box {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .answer-box .section-kicker,
    .answer-box h2,
    .answer-box > p:last-child {
        grid-column: 1;
        grid-row: auto;
        margin-top: 0;
    }

    .question-grid {
        grid-template-columns: 1fr;
    }

    .question-card {
        min-height: 0;
    }

    .question-card h3 {
        margin-top: 22px;
    }

    .room-grid,
    .use-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .room-grid .section-heading,
    .use-copy {
        max-width: 660px;
    }

    .faq-heading {
        position: static;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 70px;
    }

    .screen-gallery {
        grid-template-columns: 1fr;
        max-width: 760px;
        margin: 0 auto;
    }

    .screen-copy {
        min-height: 0;
    }

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

    .step-line {
        display: none;
    }

    .use-section {
        padding-top: 48px;
    }

    .footer-grid,
    .footer-notice {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-links {
        justify-content: flex-start;
        max-width: none;
    }
}

@media (max-width: 640px) {
    :root {
        --radius-lg: 22px;
        --radius-xl: 28px;
    }

    html {
        scroll-padding-top: calc(var(--header-height) + 16px);
    }

    body {
        padding-bottom: calc(84px + env(safe-area-inset-bottom));
        word-break: keep-all;
    }

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

    .section {
        padding: 74px 0;
    }

    .site-header {
        height: 64px;
    }

    .brand {
        gap: 8px;
        font-size: 15px;
    }

    .brand img {
        width: 34px;
        height: 34px;
        border-radius: 11px;
    }

    .brand small {
        display: none;
    }

    .site-nav {
        top: 72px;
        right: 16px;
        left: 16px;
    }

    .hero {
        padding-top: 108px;
        padding-bottom: 70px;
    }

    .hero::before {
        top: 260px;
        left: 15%;
        width: 640px;
        height: 540px;
    }

    .eyebrow {
        margin-bottom: 17px;
        padding: 7px 11px;
        font-size: 11px;
    }

    .hero h1 {
        font-size: clamp(30px, 9.2vw, 40px);
        line-height: 1.18;
    }

    .hero-description {
        margin-top: 21px;
        font-size: 15px;
        line-height: 1.72;
    }

    .hero-description > span {
        margin-top: 2px;
    }

    .hero-actions {
        display: grid;
        justify-content: stretch;
        width: min(100%, 320px);
        margin-top: 28px;
        margin-right: auto;
        margin-left: auto;
    }

    .button-large {
        width: 100%;
        min-height: 54px;
        font-size: 15px;
        line-height: 1.25;
        white-space: nowrap;
    }

    .hero-note {
        align-items: flex-start;
        width: min(100%, 330px);
        margin-right: auto;
        margin-left: auto;
        font-size: 12px;
        line-height: 1.55;
        text-align: left;
    }

    .hero-note > span {
        flex: 0 0 auto;
        margin-top: 1px;
    }

    .hero-flow {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
        gap: 5px;
        margin-top: 30px;
    }

    .hero-flow li {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 7px;
        padding: 11px 5px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.74);
        font-size: 11px;
        white-space: normal;
    }

    .hero-flow li + li::before {
        display: none;
    }

    .hero-visual {
        padding: 20px 2px 20px;
    }

    .app-window {
        border-radius: 14px;
        box-shadow: 0 20px 55px rgba(27, 100, 218, 0.18);
        transform: none;
    }

    .window-bar {
        height: 32px;
        padding: 0 10px;
        font-size: 8px;
    }

    .window-dots span {
        width: 5px;
        height: 5px;
    }

    .visual-badge {
        min-height: 36px;
        padding: 0 11px;
        border-radius: 11px;
        font-size: 9px;
    }

    .visual-badge-top {
        top: -5px;
        right: -3px;
    }

    .visual-badge-bottom {
        bottom: -2px;
        left: -3px;
    }

    .status-dot {
        width: 6px;
        height: 6px;
    }

    .badge-icon {
        width: 20px;
        height: 20px;
        border-radius: 7px;
        font-size: 9px;
    }

    .answer-box {
        gap: 11px;
        padding: 32px 25px;
    }

    .answer-box .section-kicker {
        margin-bottom: 5px;
    }

    .answer-box h2 {
        font-size: 29px;
    }

    .answer-box > p:last-child {
        margin-top: 10px;
        font-size: 15px;
        line-height: 1.75;
    }

    .question-card {
        padding: 27px 25px;
    }

    .question-card h3 {
        font-size: 20px;
    }

    .room-section .section-heading,
    .use-copy,
    .faq-heading {
        text-align: left;
    }

    .section-heading h2,
    .room-section h2,
    .faq-heading h2,
    .use-copy h2 {
        font-size: clamp(34px, 9.2vw, 42px);
    }

    .section-heading > p:last-child,
    .room-section .section-heading > p:last-of-type,
    .faq-heading > p:last-of-type,
    .use-copy > .use-description {
        margin-top: 19px;
        font-size: 15px;
        line-height: 1.72;
    }

    .room-demo {
        padding: 14px;
        border-radius: 22px;
    }

    .demo-toolbar {
        padding: 4px 3px 12px;
        font-size: 10px;
    }

    .demo-row {
        grid-template-columns: 24px 34px 1fr;
        gap: 8px;
        padding: 13px 11px;
        border-radius: 14px;
    }

    .demo-check {
        width: 22px;
        height: 22px;
    }

    .demo-avatar {
        width: 34px;
        height: 34px;
        border-radius: 11px;
        font-size: 11px;
    }

    .demo-info b {
        font-size: 12px;
    }

    .demo-info small {
        font-size: 9px;
    }

    .demo-status {
        display: none;
    }

    .demo-summary {
        grid-template-columns: auto 1fr;
        padding: 13px;
    }

    .summary-pill {
        display: none;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 56px;
    }

    .feature-card,
    .feature-card-wide {
        display: block;
        grid-column: auto;
        min-height: 0;
        padding: 25px;
    }

    .feature-card h3,
    .feature-card-wide h3 {
        margin-top: 23px;
        font-size: 19px;
    }

    .screen-section .container {
        width: 100%;
    }

    .section-heading-centered {
        width: 100%;
        margin-bottom: 38px;
        text-align: left;
    }

    .screen-section .section-heading-centered {
        width: calc(100% - 32px);
    }

    .screen-gallery {
        display: flex;
        gap: 12px;
        max-width: none;
        padding: 0 16px 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        overscroll-behavior-inline: contain;
    }

    .screen-gallery::-webkit-scrollbar {
        display: none;
    }

    .screen-card {
        flex: 0 0 min(86vw, 370px);
        scroll-snap-align: center;
        border-radius: 20px;
    }

    .screen-copy {
        padding: 22px;
    }

    .screen-copy strong {
        font-size: 18px;
    }

    .zoom-label {
        opacity: 1;
        transform: none;
    }

    .gallery-dots {
        display: flex;
    }

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

    .step-card {
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: 16px;
        min-height: 0;
        padding: 22px;
    }

    .step-card h3 {
        margin: 1px 0 7px;
        font-size: 18px;
    }

    .safety-card {
        gap: 15px;
        padding: 27px 22px;
        border-radius: 23px;
    }

    .safety-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .safety-card h3 {
        font-size: 19px;
    }

    .safety-card ul {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        gap: 35px;
    }

    .faq-list {
        border-radius: 20px;
    }

    .faq-list summary {
        grid-template-columns: 26px minmax(0, 1fr) 16px;
        gap: 10px;
        min-height: 78px;
        padding: 16px 14px;
        font-size: 14px;
        line-height: 1.55;
    }

    .faq-list summary > span,
    .faq-answer > span {
        width: 26px;
        height: 26px;
    }

    .faq-answer {
        grid-template-columns: 26px minmax(0, 1fr);
        gap: 10px;
        padding: 0 14px 20px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.72;
    }

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

    .final-cta {
        padding: 62px 18px;
        border-radius: 28px;
    }

    .final-cta h2 {
        font-size: clamp(30px, 8.7vw, 35px);
    }

    .final-cta > span {
        font-size: 14px;
    }

    .final-actions {
        display: grid;
        width: min(100%, 320px);
        margin: 0 auto;
    }

    .final-actions .button {
        width: 100%;
        min-width: 0;
    }

    .site-footer {
        padding-bottom: 34px;
    }

    .footer-grid,
    .footer-notice {
        gap: 22px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-notice {
        margin-top: 30px;
    }

    .footer-notice > span {
        white-space: normal;
    }

    .footer-notice p,
    .footer-notice > span {
        font-size: 11px;
    }

    .floating-consult {
        right: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom));
        grid-template-columns: 40px minmax(0, 1fr) 16px;
        min-width: 164px;
        min-height: 62px;
        padding: 8px 12px 8px 8px;
        border-radius: 19px;
    }

    .floating-consult-icon {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .floating-consult-bubble {
        width: 25px;
        height: 19px;
    }

    .floating-consult-bubble::after {
        top: 0;
        left: 4px;
        font-size: 11px;
    }

    .floating-consult small {
        font-size: 9px;
    }

    .floating-consult b {
        font-size: 14px;
    }

    .screen-dialog {
        width: calc(100vw - 22px);
    }

    .screen-dialog figure {
        border-radius: 14px;
    }

    .screen-dialog figcaption {
        padding: 15px;
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .container {
        width: calc(100% - 26px);
    }

    .hero h1 {
        font-size: clamp(30px, 9.2vw, 34px);
    }

    .hero-flow li {
        padding-right: 2px;
        padding-left: 2px;
        font-size: 10px;
    }

    .floating-consult {
        right: 9px;
        min-width: 154px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .js-ready .reveal {
        opacity: 1;
        transform: none;
    }
}
