:root {
    --ui-ink: #17241d;
    --ui-muted: #66736c;
    --ui-line: #dfe7e2;
    --ui-surface: #ffffff;
    --ui-soft: #f4f7f5;
    --ui-brand: #07c160;
    --ui-brand-dark: #078b48;
    --ui-shadow: 0 16px 42px rgba(29, 55, 40, .09);
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 0;
    color: var(--ui-ink);
    background: #f1f5f2;
}

body .wrapper {
    height: auto;
    min-height: 100vh;
}

body .page-content {
    width: min(1320px, 100%);
    margin: 0 auto;
    padding: 24px clamp(14px, 3vw, 38px) 46px;
}

body #pageHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 0 0 22px;
    padding: 22px 28px;
    color: #fff;
    text-align: left;
    background: #10251a;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(16, 37, 26, .15);
    animation: none;
}

.page-header-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.page-header-brand:hover,
.page-header-brand:focus {
    color: inherit;
    text-decoration: none;
}

.page-header-logo {
    display: block;
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    padding: 4px;
    object-fit: contain;
    background: #eafff2;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    box-shadow: 0 9px 24px rgba(0, 0, 0, .18);
}

.page-header-copy {
    display: block;
    min-width: 0;
}

.page-header-eyebrow,
.page-header-title,
.page-header-subtitle {
    display: block;
}

.page-header-eyebrow {
    margin-bottom: 4px;
    color: #75dda3;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
}

.page-header-title {
    margin: 0;
    color: #fff;
    font-size: clamp(23px, 3vw, 31px);
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.page-header-subtitle {
    margin-top: 3px;
    color: #b9c9c0;
    font-size: 13px;
    line-height: 1.35;
}

.local-badge {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 8px;
    padding: 8px 12px;
    color: #c9f8dc;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(117, 221, 163, .22);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 650;
}

.local-badge i {
    width: 7px;
    height: 7px;
    background: var(--ui-brand);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(7, 193, 96, .12);
}

body .preview-export-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 116px;
    min-height: 40px;
    padding: 8px 18px;
    color: #fff;
    background: linear-gradient(135deg, #18ca72 0%, #07ad57 100%);
    border: 1px solid rgba(5, 128, 64, .22);
    border-radius: 11px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: 0 8px 17px rgba(7, 167, 82, .18), inset 0 1px 0 rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

body .preview-export-btn:hover,
body .preview-export-btn:focus-visible {
    color: #fff;
    filter: saturate(1.06) brightness(1.035);
    box-shadow: 0 11px 21px rgba(7, 167, 82, .24), inset 0 1px 0 rgba(255, 255, 255, .3);
    outline: none;
    transform: translateY(-2px);
}

body .preview-export-btn:focus-visible {
    box-shadow: 0 11px 21px rgba(7, 167, 82, .24), 0 0 0 3px rgba(7, 193, 96, .15), inset 0 1px 0 rgba(255, 255, 255, .3);
}

body .preview-export-btn:active {
    filter: brightness(.97);
    box-shadow: 0 7px 16px rgba(7, 167, 82, .2), inset 0 2px 4px rgba(3, 91, 44, .14);
    transform: translateY(1px);
}

body .edit-content {
    align-items: flex-start;
    gap: 22px;
    padding-bottom: 50px;
}

body .tab {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: var(--ui-surface);
    border: 1px solid var(--ui-line);
    border-radius: 18px;
    box-shadow: var(--ui-shadow);
}

body .nav-tabs {
    display: flex;
    gap: 6px;
    margin: 0;
    padding: 10px;
    background: var(--ui-soft);
    border: 0;
}

body .nav-tabs > li {
    float: none;
    flex: 1;
    margin: 0;
}

body .nav-tabs > li > a {
    margin: 0;
    padding: 12px 16px;
    color: #66736c;
    text-align: center;
    background: transparent;
    border: 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 650;
}

body .nav-tabs > li.active > a,
body .nav-tabs > li.active > a:focus,
body .nav-tabs > li.active > a:hover {
    color: #0c6c39;
    background: #fff;
    border: 0;
    box-shadow: 0 5px 16px rgba(29, 55, 40, .08);
}

body .tab-content {
    min-width: 0;
    padding: 8px 18px 20px;
}

body .view-setting {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 18px;
    padding: 18px 0 6px;
}

body .view-setting2 {
    grid-template-columns: 1fr;
    padding-top: 14px;
}

body .view-set-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    min-width: 0;
    min-height: 54px;
    padding: 7px 0;
    border-bottom: 1px solid #edf1ee;
}

body .view-set-item > span,
body .view-setting2 .view-set-item > span {
    flex: 0 0 104px;
    width: auto;
    color: #526159;
    font-size: 13px;
    font-weight: 600;
}

body .form-control,
body .view-set-item input[type="number"],
body .view-set-item input[type="text"],
body textarea.edit-dialog-text,
body .dialog-user-face input[type="text"] {
    min-height: 38px;
    color: var(--ui-ink);
    background: #fbfcfb;
    border: 1px solid #dbe4de;
    border-radius: 9px;
    box-shadow: none;
}

body .form-control:focus,
body textarea.edit-dialog-text:focus,
body .dialog-user-face input[type="text"]:focus {
    background: #fff;
    border-color: var(--ui-brand);
    box-shadow: 0 0 0 3px rgba(7, 193, 96, .12);
}

body .view-set-item select {
    width: auto;
    min-width: 70px;
    margin: 0;
}

body .view-set-item input[type="number"],
body .view-set-item input[type="text"] {
    flex: 1 1 145px;
    width: auto;
    margin: 0;
}

body .system-support-note {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    gap: 10px;
    margin: 4px 0 6px;
    padding: 10px 12px;
    color: #53655b;
    font-size: 12px;
    line-height: 1.55;
    background: #f3faf6;
    border: 1px solid #dcece2;
    border-radius: 10px;
}

body .system-support-note strong {
    flex: 0 0 auto;
    padding: 2px 8px;
    color: #087743;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    background: #dcf7e7;
    border-radius: 999px;
}

body input[type="range"] {
    accent-color: var(--ui-brand);
}

body .dialog-user {
    padding: 20px 0 4px;
}

body .avatar-ai-notice {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 10px 0 2px;
    padding: 9px 12px;
    color: #53655b;
    font-size: 12px;
    line-height: 1.55;
    background: #f3faf6;
    border: 1px solid #dcece2;
    border-radius: 10px;
}

body .avatar-ai-badge {
    flex: 0 0 auto;
    padding: 2px 7px;
    color: #087743;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .05em;
    background: #dcf7e7;
    border-radius: 999px;
}

body .dialog-user-items {
    gap: 8px;
    padding: 16px 0 6px;
    border-color: #e6ece8;
}

body .dialog-user-item {
    margin: 0 10px 14px 0;
}

body .dialog-user-face i,
body .dialog-user-item-add {
    border-radius: 14px;
}

body textarea.edit-dialog-text {
    width: 100%;
    height: 112px;
    padding: 12px 14px;
    resize: vertical;
}

body .dialog-user-content .btn-groups {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

body .dialog-user-content .btn-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: auto;
    max-width: none;
    margin: 0;
    gap: 8px;
}

body .dialog-user-content .btn-group .btn,
body .btn-clear {
    min-height: 40px;
    padding: 8px 10px;
    border: 0;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 650;
    box-shadow: none;
}

body .btn-primary,
body .btn-success {
    color: #fff;
    background: var(--ui-brand-dark);
}

body .btn-primary:hover,
body .btn-success:hover,
body .btn-primary:focus,
body .btn-success:focus {
    color: #fff;
    background: #066f39;
}

body .btn-clear {
    margin-top: 12px;
    color: #a63e3e;
    background: #fff0f0;
}

/* The legacy script sets phone-wrap dimensions and phone-content scale inline.
   Keep the preview canvas untouched; style only the outer frame. */
body .preview-column {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    gap: 12px;
}

body .phone-wrap {
    position: relative;
    flex: 0 0 auto;
    box-sizing: content-box;
    margin: 0;
    padding: 20px;
    background: #e7eee9;
    border: 1px solid #d6e0d9;
    border-radius: 18px;
    box-shadow: var(--ui-shadow);
}

body .phone-wrap .phone-content {
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
}

body .status-icon-label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

body .android-cellular-icon,
body .android-wifi-icon,
body .android-battery-percent,
body .phone-nav-more > i {
    display: none;
}

/* Android preview variant. iOS remains the unchanged default. */
body .phone.phone-android {
    font-family: Roboto, "Noto Sans SC", "PingFang SC", sans-serif;
    background-color: #f2f2f2;
}

body .phone-android .phone-top,
body .phone-android .phone-nav,
body .phone-android .phone-bar {
    background-color: #ededed;
}

body .phone-android .phone-bar {
    position: relative;
    height: 96px;
    padding: 0 42px;
}

body .phone-android .phone-time {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 0;
}

body .phone-android .phone-sigle {
    display: flex;
    align-items: center;
    width: 48px;
    height: 30px;
    margin-right: 12px;
    background: none;
    text-indent: 0;
}

body .phone-android .android-cellular-icon {
    display: block;
    width: 48px;
    height: 30px;
    overflow: visible;
    fill: #222;
}

body .phone-android .android-status-muted {
    fill: #b8b8b8;
    stroke: #b8b8b8;
}

body .phone-android .phone-wifi:not(.phone-wifi-v2) {
    display: flex;
    align-items: center;
    width: 50px;
    height: 38px;
    margin-right: 12px;
    background: none;
    text-indent: 0;
}

body .phone-android .android-wifi-icon {
    display: block;
    width: 50px;
    height: 38px;
    overflow: visible;
}

body .phone-android .android-wifi-icon path {
    fill: none;
    stroke: #222;
    stroke-width: 5;
    stroke-linecap: round;
}

body .phone-android .android-wifi-icon path.android-status-muted {
    stroke: #b8b8b8;
}

body .phone-android .android-wifi-icon circle {
    fill: #222;
}

body .phone-android .phone-wifi-v2 {
    width: auto;
    min-width: 52px;
    margin-right: 12px;
    font-size: 27px;
    font-weight: 600;
    text-indent: 0;
}

body .phone-android .phone-battery {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 34px;
    padding: 0;
    background: #f8f8f8;
    border: 3px solid #222;
    border-radius: 8px;
    text-indent: 0;
}

body .phone-android .phone-battery::after {
    content: "";
    position: absolute;
    top: 8px;
    right: -8px;
    width: 5px;
    height: 12px;
    background: #222;
    border-radius: 0 3px 3px 0;
}

body .phone-android .phone-battery > span {
    display: none;
}

body .phone-android .android-battery-percent {
    display: block;
    color: #222;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

body .phone-android .phone-battery-charge {
    border-color: #169c52;
}

body .phone-android .phone-battery-charge::after {
    background: #169c52;
}

body .phone-android .phone-battery-charge .android-battery-percent {
    color: #118447;
}

body .phone-android .phone-nav {
    height: 144px;
    padding: 0 38px;
}

body .phone-android .phone-nav-left {
    z-index: 2;
    width: 190px;
}

body .phone-android .phone-nav-left-has-count {
    width: 190px;
}

body .phone-android .phone-nav-left span {
    left: 62px;
    min-width: 58px;
    height: 58px;
    margin-top: -29px;
    padding: 0 18px;
    font-size: 30px;
    line-height: 58px;
}

body .phone-android .phone-nav-back {
    width: 32px;
    height: 32px;
    background: none;
    border-left: 7px solid #1f1f1f;
    border-bottom: 7px solid #1f1f1f;
    transform: rotate(45deg);
}

body .phone-android .phone-nav-center {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 640px;
    min-width: 0;
    padding: 0;
    transform: translateX(-50%);
    justify-content: center;
    pointer-events: none;
}

body .phone-android .phone-nav-center span {
    min-width: 0;
    max-width: 640px;
    font-size: 46px;
    font-weight: 500;
}

body .phone-android .phone-nav-center span font {
    display: block;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body .phone-android .phone-nav-right {
    z-index: 2;
    width: 190px;
    margin-left: auto;
}

body .phone-android .phone-nav-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 72px;
    height: 24px;
    background: none;
    text-indent: 0;
}

body .phone-android .phone-nav-more > i {
    display: block;
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    background: #222;
    border-radius: 50%;
}

body .phone-android .phone-body {
    top: 240px;
    bottom: 227px;
}

body .phone-android.phone-android-nav-buttons .phone-body {
    bottom: 263px;
}

body .phone-android.phone-android-nav-hidden .phone-body {
    bottom: 167px;
}

body .phone-android .phone-bottom {
    background: #fafafa;
}

body .phone-android .phone-bottom-bar {
    height: 60px;
    align-items: center;
    background: transparent;
}

body .phone-android .phone-bottom-bar.android-nav-bar-buttons {
    height: 96px;
}

body .phone-android .android-gesture-indicator {
    display: block;
    width: 240px;
    height: 13px;
    background: #222;
    border-radius: 999px;
}

body .phone-android .android-system-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 420px;
    height: 100%;
}

body .phone-android .android-system-nav span {
    display: block;
    box-sizing: border-box;
}

body .phone-android .android-nav-back {
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-right: 29px solid #414141;
    border-bottom: 17px solid transparent;
}

body .phone-android .android-nav-home {
    width: 34px;
    height: 34px;
    border: 6px solid #414141;
    border-radius: 50%;
}

body .phone-android .android-nav-recent {
    width: 31px;
    height: 31px;
    border: 6px solid #414141;
}

body .product-overview {
    margin: 0 0 32px;
    padding: clamp(24px, 3vw, 36px);
    background: #fff;
    border: 1px solid var(--ui-line);
    border-radius: 18px;
    box-shadow: var(--ui-shadow);
}

body .overview-heading {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
    gap: 6px 42px;
    align-items: end;
}

body .overview-eyebrow {
    color: var(--ui-brand-dark);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .16em;
}

body .overview-heading h2,
body .overview-faq h2,
body .overview-features h3,
body .faq-grid h3,
body .overview-heading p,
body .overview-features p,
body .faq-grid p {
    margin-top: 0;
}

body .overview-heading h2 {
    margin-bottom: 0;
    color: #183226;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.25;
    letter-spacing: -.02em;
}

body .overview-heading p {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-bottom: 0;
    color: var(--ui-muted);
    font-size: 14px;
    line-height: 1.8;
}

body .overview-features,
body .faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

body .faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

body .overview-features {
    margin-top: 28px;
}

body .overview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

body .overview-actions a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

body .overview-primary-link {
    color: #fff;
    background: var(--ui-brand-dark);
    border: 1px solid var(--ui-brand-dark);
}

body .overview-primary-link:hover,
body .overview-primary-link:focus {
    color: #fff;
    background: #066f39;
    border-color: #066f39;
}

body .overview-secondary-link {
    color: var(--ui-brand-dark);
    background: #f3faf6;
    border: 1px solid #cfe3d6;
}

body .overview-secondary-link:hover,
body .overview-secondary-link:focus {
    color: #066f39;
    background: #e7f7ed;
    border-color: #9bc9ab;
}

body .overview-features article,
body .faq-grid article {
    padding: 19px;
    background: #f5f8f6;
    border: 1px solid #e6ece8;
    border-radius: 13px;
}

body .feature-index {
    display: block;
    margin-bottom: 17px;
    color: var(--ui-brand-dark);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .12em;
}

body .overview-features h3,
body .faq-grid h3 {
    margin-bottom: 7px;
    color: #213a2e;
    font-size: 15px;
    font-weight: 700;
}

body .overview-features p,
body .faq-grid p {
    margin-bottom: 0;
    color: #68776f;
    font-size: 12px;
    line-height: 1.75;
}

body .intent-section {
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid #e7ede9;
}

body .intent-heading {
    max-width: 880px;
}

body .intent-heading h2 {
    margin: 6px 0 9px;
    color: #183226;
    font-size: clamp(21px, 2.3vw, 28px);
    line-height: 1.3;
    letter-spacing: -.02em;
}

body .intent-heading p {
    margin: 0;
    color: var(--ui-muted);
    font-size: 14px;
    line-height: 1.8;
}

body .intent-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 19px;
}

body .intent-grid article {
    padding: 18px 19px;
    background: #fbfdfb;
    border: 1px solid #e2ebe5;
    border-radius: 13px;
}

body .intent-grid h3 {
    margin: 0 0 7px;
    color: #213a2e;
    font-size: 15px;
    font-weight: 720;
}

body .intent-grid p {
    margin: 0;
    color: #68776f;
    font-size: 12px;
    line-height: 1.75;
}

body .overview-faq {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid #e7ede9;
}

body .overview-faq h2 {
    margin-bottom: 14px;
    color: #213a2e;
    font-size: 18px;
    font-weight: 720;
}

body .faq-grid article {
    padding: 17px 19px;
    background: #fff;
}

body .export-section {
    width: min(1244px, calc(100% - 28px));
    margin: 0 auto 28px;
    padding: 32px 20px;
    background: #10251a;
    border: 0;
    border-radius: 18px;
    animation: none;
}

body .export-btn {
    min-width: 184px;
    padding: 13px 22px;
    color: #06391e;
    background: var(--ui-brand);
    border: 0;
    border-radius: 10px;
    box-shadow: 0 10px 23px rgba(7, 193, 96, .22);
    animation: none;
}

body .export-btn:hover,
body .export-btn:focus {
    color: #052d18;
    background: #2bd77b;
}

body .export-tip {
    color: #9eb0a6;
    font-style: normal;
}

body .page-footer {
    margin: 0;
    padding: 0;
    color: #dce9e1;
    background:
        radial-gradient(circle at 12% 0%, rgba(24, 202, 114, .14), transparent 31%),
        #10251a;
    border: 0;
    border-top: 1px solid rgba(117, 221, 163, .13);
    animation: none;
}

body .page-footer .footer-content {
    width: min(1320px, 100%);
    max-width: none;
    margin: 0 auto;
    padding: 38px clamp(18px, 3vw, 38px) 25px;
}

body .page-footer .footer-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

body .page-footer .footer-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

body .page-footer .footer-brand:hover,
body .page-footer .footer-brand:focus {
    color: #fff;
    text-decoration: none;
}

body .page-footer .footer-brand-logo {
    display: block;
    width: 44px;
    height: 44px;
    padding: 3px;
    object-fit: contain;
    background: rgba(234, 255, 242, .95);
    border-radius: 13px;
}

body .page-footer .footer-brand span,
body .page-footer .footer-brand strong,
body .page-footer .footer-brand small {
    display: block;
}

body .page-footer .footer-brand strong {
    margin-bottom: 2px;
    font-size: 19px;
    letter-spacing: .05em;
}

body .page-footer .footer-brand small {
    color: #94aa9e;
    font-size: 12px;
    font-weight: 500;
}

body .page-footer .footer-summary {
    max-width: 520px;
    margin: 0;
    color: #9eb2a7;
    font-size: 13px;
    line-height: 1.7;
    text-align: right;
}

body .page-footer .footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    margin: 28px 0 22px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

body .page-footer .footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: auto;
    min-height: 34px;
    padding: 7px 12px;
    color: #bfd0c6;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 999px;
    font-family: inherit;
    text-decoration: none;
    box-shadow: none;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

body .page-footer .footer-link:hover,
body .page-footer .footer-link:focus {
    color: #fff;
    background: rgba(24, 202, 114, .13);
    border-color: rgba(117, 221, 163, .3);
    text-decoration: none;
    box-shadow: none;
    outline: none;
    transform: translateY(-1px);
}

body .page-footer .link-text {
    font-size: 13px;
    font-weight: 550;
}

body .page-footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

body .page-footer .footer-bottom p {
    margin: 0;
    color: #748a7e;
    font-size: 11px;
    line-height: 1.6;
}

body .page-footer .footer-bottom p:last-child {
    max-width: 640px;
    text-align: right;
}

@media (max-width: 1100px) {
    body .edit-content {
        flex-direction: column;
    }

    body .tab {
        width: 100%;
        min-width: 0;
    }

    body .preview-column {
        margin: 0 auto;
    }

    body .phone-wrap {
        margin: 0;
    }
}

@media (max-width: 700px) {
    body .page-content {
        padding: 13px 12px 32px;
    }

    body #pageHeader {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
        padding: 18px 20px;
        border-radius: 15px;
    }

    body .page-header-logo {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    body .local-badge {
        padding: 7px 11px;
    }

    body .tab-content {
        padding: 5px 14px 18px;
    }

    body .product-overview {
        padding: 22px 18px;
        border-radius: 15px;
    }

    body .overview-heading {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    body .overview-heading p {
        grid-column: auto;
        grid-row: auto;
        margin-top: 5px;
    }

    body .overview-features,
    body .faq-grid,
    body .intent-grid {
        grid-template-columns: 1fr;
    }

    body .view-setting {
        grid-template-columns: 1fr;
    }

    body .dialog-user-content .btn-groups {
        grid-template-columns: 1fr;
    }

    body .dialog-user-content .btn-group,
    body .dialog-user-items,
    body textarea.edit-dialog-text {
        width: 100%;
    }

    body .phone-wrap {
        padding-right: 14px;
        padding-left: 14px;
    }

    body .export-section {
        width: calc(100% - 24px);
        border-radius: 15px;
    }

    body .page-footer .footer-content {
        padding: 31px 18px 22px;
    }

    body .page-footer .footer-brand-row,
    body .page-footer .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    body .page-footer .footer-summary,
    body .page-footer .footer-bottom p:last-child {
        max-width: none;
        text-align: left;
    }

    body .page-footer .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin: 23px 0 19px;
        padding: 17px 0;
    }

    body .page-footer .footer-link {
        width: auto;
        justify-content: center;
    }
}

@media (max-width: 430px) {
    body .view-set-item > span,
    body .view-setting2 .view-set-item > span {
        flex-basis: 100%;
    }

    body .dialog-user-content .btn-group {
        grid-template-columns: 1fr 1fr;
    }

    body .page-footer .footer-links {
        grid-template-columns: 1fr;
    }
}

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