        :root {
            --bg: #f5f2e9;
            --surface: #fffdf8;
            --surface-2: #fef8ec;
            --text: #1f2a1f;
            --muted: #5b675d;
            --line: #dfd6c6;
            --brand: #0f7b6c;
            --brand-2: #e46f2d;
            --brand-3: #2f5c9a;
            --shadow: 0 16px 40px rgba(19, 33, 29, 0.12);
            --radius-xl: 26px;
            --radius-lg: 18px;
            --container: 1180px;
            --container-narrow: 980px;
            --container-mid: 1040px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
            color: var(--text);
            background:
                radial-gradient(1000px 600px at 92% -5%, rgba(228, 111, 45, 0.14), transparent 60%),
                radial-gradient(900px 500px at -8% 18%, rgba(15, 123, 108, 0.14), transparent 56%),
                linear-gradient(180deg, #f6f3ea 0%, #f8f6f0 32%, #f4efe2 100%);
            line-height: 1.6;
        }

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

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

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

        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(12px);
            background: rgba(255, 252, 244, 0.9);
            border-bottom: 1px solid rgba(176, 161, 133, 0.22);
        }

        .nav-wrap {
            min-height: 76px;
            display: flex;
            align-items: center;
            gap: 22px;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text);
            font-weight: 800;
            font-size: 1.08rem;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            box-shadow: 0 10px 16px rgba(14, 96, 85, 0.2);
        }

        .nav-links {
            display: flex;
            gap: 18px;
            list-style: none;
            margin: 0;
            padding: 0;
            flex: 1;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
        }

        .nav-links a {
            text-decoration: none;
            color: #34453a;
            font-weight: 600;
            font-size: 0.94rem;
            padding: 8px 6px;
            border-bottom: 2px solid transparent;
            transition: color 0.2s ease, border-color 0.2s ease;
        }

        .nav-links a:hover {
            color: var(--brand);
            border-color: #9dc6bc;
        }

        .nav-utils {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: auto;
        }

        .user-menu {
            position: relative;
        }

        .user-menu summary {
            list-style: none;
            cursor: pointer;
        }

        .user-menu summary::-webkit-details-marker {
            display: none;
        }

        .user-menu-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            z-index: 60;
            display: grid;
            min-width: 150px;
            padding: 8px;
            border: 1px solid var(--line);
            border-radius: 12px;
            background: var(--surface);
            box-shadow: var(--shadow);
        }

        .user-menu-dropdown a {
            padding: 9px 10px;
            border-radius: 8px;
            color: var(--text);
            text-decoration: none;
            white-space: nowrap;
        }

        .user-menu-dropdown a:hover {
            background: var(--surface-2);
        }

        .profile-panel {
            max-width: 720px;
            margin: 0 auto 56px;
        }

        .profile-details {
            margin: 0;
        }

        .profile-details > div {
            display: grid;
            grid-template-columns: minmax(130px, 0.35fr) 1fr;
            gap: 20px;
            padding: 14px 0;
            border-bottom: 1px solid var(--line);
        }

        .profile-details > div:first-child {
            padding-top: 0;
        }

        .profile-details > div:last-child {
            padding-bottom: 0;
            border-bottom: 0;
        }

        .profile-details dt {
            color: var(--muted);
            font-weight: 700;
        }

        .profile-details dd {
            margin: 0;
            overflow-wrap: anywhere;
        }

        .search {
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid #d6c9b2;
            border-radius: 999px;
            background: #fffcf4;
            padding: 8px 12px;
            min-width: 180px;
        }

        .search input {
            border: 0;
            outline: 0;
            background: transparent;
            width: 100%;
            color: var(--text);
            font-family: inherit;
            font-size: 0.9rem;
        }

        .search span {
            color: #6f7d72;
            font-size: 0.9rem;
        }

        .nav-toggle {
            display: none;
            border: 1px solid #d3c6ae;
            background: #fffaf0;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            cursor: pointer;
        }

        .btn {
            border: 1px solid #d7c9af;
            border-radius: 999px;
            font-weight: 700;
            padding: 10px 14px;
            font-size: 0.9rem;
            letter-spacing: 0.01em;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #1f2a1f;
            background: #fff7e9;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
        }

        .btn-primary {
            color: #fff;
            border-color: transparent;
            background: linear-gradient(135deg, var(--brand) 0%, #149f8b 100%);
            box-shadow: 0 14px 26px rgba(20, 111, 102, 0.25);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 34px rgba(20, 111, 102, 0.3);
        }

        .btn-ghost {
            color: var(--text);
            background: #f4eddf;
            border: 1px solid #dfd1ba;
        }

        .btn-ghost:hover {
            background: #efe5d2;
            transform: translateY(-2px);
        }

        .page-main {
            min-height: 60vh;
        }

        .page-main--home {
            margin-top: 0;
        }

        .page-main--legal {
            width: min(var(--container-narrow), calc(100% - 2rem));
            margin: 0 auto;
        }

        .page-main--support {
            width: min(var(--container-mid), calc(100% - 2rem));
            margin: 0 auto;
        }

        .site-footer {
            margin-top: 30px;
            background: #162720;
            color: #dbe7df;
            padding: 58px 0 22px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1fr;
            gap: 20px;
            margin-bottom: 24px;
        }

        .footer-title {
            font-weight: 800;
            margin-bottom: 8px;
            color: #f4fbf8;
        }

        .site-footer p,
        .site-footer a {
            color: #c7d7cd;
            font-size: 0.95rem;
            text-decoration: none;
        }

        .footer-store {
            margin-top: 12px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .footer-store a {
            border: 1px solid rgba(216, 231, 220, 0.3);
            border-radius: 999px;
            padding: 6px 10px;
            font-size: 0.84rem;
        }

        .site-footer a:hover {
            color: #ffffff;
        }

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

        .copyright {
            border-top: 1px solid rgba(201, 218, 206, 0.22);
            padding-top: 14px;
            font-size: 0.87rem;
            color: #a9beb0;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            flex-wrap: wrap;
        }

        .footer-lang-switcher {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding-top: 14px;
            border-top: 1px solid rgba(201, 218, 206, 0.22);
        }

        .footer-lang-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #d7e4dc;
            border: 1px solid rgba(216, 231, 220, 0.36);
            border-radius: 999px;
            padding: 6px 10px;
            font-weight: 700;
            font-size: 0.84rem;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.03);
            transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        }

        .footer-lang-link:hover {
            background: rgba(255, 255, 255, 0.09);
            border-color: rgba(244, 251, 248, 0.7);
            transform: translateY(-1px);
        }

        .footer-lang-link.is-active {
            color: #ffffff;
            background: rgba(15, 123, 108, 0.5);
            border-color: rgba(141, 226, 211, 0.8);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
        }

        .footer-flag {
            font-size: 1rem;
            line-height: 1;
        }

        .eyebrow {
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--brand-3);
            margin: 0 0 12px;
        }

        h1,
        h2,
        h3 {
            margin: 0;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        h1,
        h2 {
            font-family: inherit;
            font-weight: 800;
        }

        h1 {
            font-size: clamp(2.2rem, 4vw, 4.2rem);
        }

        h2 {
            font-size: clamp(1.7rem, 3vw, 3rem);
            margin-bottom: 16px;
        }

        p {
            margin: 0;
            color: var(--muted);
            font-size: 1.04rem;
        }

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

        .hero {
            padding-top: 86px;
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.08fr 0.92fr;
            gap: 36px;
            align-items: center;
        }

        .hero p {
            font-size: 1.08rem;
            max-width: 640px;
            margin-top: 18px;
            margin-bottom: 30px;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .store-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 14px;
        }

        .store-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 700;
            color: #17342d;
            border: 1px solid #d7c9af;
            background: #f9f2e6;
            padding: 9px 14px;
            border-radius: 999px;
            transition: all 0.25s ease;
        }

        .store-badge svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
            stroke: currentColor;
            stroke-width: 1.3;
            stroke-linecap: round;
            stroke-linejoin: round;
            flex: 0 0 16px;
        }

        .store-badge--android svg {
            color: #1f8e45;
        }

        .store-badge--ios svg {
            color: #2f5c9a;
        }

        .store-badge:hover {
            transform: translateY(-2px);
            background: #efe4d3;
        }

        .hero-card {
            background: var(--surface);
            border: 1px solid #dfd5c4;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow);
            padding: 26px;
            position: relative;
        }

        .hero-card::before {
            content: "";
            position: absolute;
            inset: -18% 35% auto -24%;
            height: 140px;
            border-radius: 44px;
            background: linear-gradient(145deg, rgba(15, 123, 108, 0.2), rgba(47, 92, 154, 0.12));
            transform: rotate(-10deg);
            pointer-events: none;
        }

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

        .metric {
            background: var(--surface-2);
            border: 1px solid #eadfcf;
            border-radius: 14px;
            padding: 14px;
        }

        .metric strong {
            display: block;
            font-size: 1.38rem;
            color: #17342d;
            line-height: 1.15;
        }

        .metric span {
            font-size: 0.86rem;
            color: #647269;
        }

        .overview-panel {
            background: #fffdf8;
            border: 1px solid #ded2be;
            border-radius: var(--radius-xl);
            padding: 28px;
            box-shadow: var(--shadow);
        }

        .overview-grid {
            margin-top: 20px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }

        .overview-item {
            background: #f8f1e4;
            border: 1px solid #e3d5bd;
            border-radius: 14px;
            padding: 16px;
        }

        .overview-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            border: 1px solid rgba(12, 72, 63, 0.16);
            background: linear-gradient(145deg, #eaf6f3, #dff1ec);
            color: #0f7b6c;
        }

        .overview-icon svg {
            width: 22px;
            height: 22px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .overview-icon--data {
            background: linear-gradient(145deg, #edf2fa, #e3ecfb);
            border-color: rgba(35, 80, 150, 0.18);
            color: #2f5c9a;
        }

        .overview-icon--insight {
            background: linear-gradient(145deg, #fbefe8, #fae4d8);
            border-color: rgba(190, 86, 29, 0.18);
            color: #c25a28;
        }

        .overview-item h3 {
            font-family: inherit;
            font-size: 1.03rem;
            margin-bottom: 6px;
        }

        .solutions {
            background: linear-gradient(180deg, #f4efe3 0%, #f9f5ec 100%);
            border-top: 1px solid #eadfcb;
            border-bottom: 1px solid #eadfcb;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 24px;
        }

        .solution-card {
            background: #fffdf8;
            border: 1px solid #dfd2bd;
            border-radius: 18px;
            padding: 20px;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .solution-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 34px rgba(35, 50, 41, 0.14);
        }

        .solution-index {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 10px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
            background: linear-gradient(135deg, var(--brand-2), #cf5622);
        }

        .solution-card h3 {
            font-size: 1.05rem;
            margin-bottom: 8px;
            font-family: inherit;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 24px;
        }

        .quote {
            background: #ffffff;
            border: 1px solid #e4d8c5;
            border-radius: 18px;
            padding: 20px;
            box-shadow: 0 10px 24px rgba(33, 50, 43, 0.08);
        }

        .quote p {
            color: #33473b;
            font-size: 1rem;
        }

        .quote footer {
            margin-top: 12px;
            font-size: 0.92rem;
            color: #596b5f;
            font-weight: 600;
        }

        .journey {
            background: #f7f2e8;
        }

        .journey-track {
            margin-top: 28px;
            display: grid;
            grid-template-columns: repeat(7, minmax(180px, 1fr));
            gap: 22px;
            overflow-x: auto;
            padding-bottom: 6px;
            padding-right: 14px;
        }

        .journey-step {
            background: #fffdf8;
            border: 1px solid #dfd2bd;
            border-radius: 16px;
            padding: 14px 18px 14px 14px;
            min-height: 140px;
            position: relative;
            overflow: visible;
            z-index: 1;
        }

        .journey-step::after {
            content: "";
            position: absolute;
            right: -16px;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            border-radius: 999px;
            background: linear-gradient(135deg, #0f7b6c 0%, #1f8e7f 100%);
            border: 2px solid #fffdf8;
            box-shadow: 0 8px 18px rgba(15, 123, 108, 0.26);
            z-index: 4;
            pointer-events: none;
        }

        .journey-step::before {
            content: "";
            position: absolute;
            right: -7px;
            top: 50%;
            transform: translateY(-50%);
            width: 13px;
            height: 10px;
            background: #ffffff;
            clip-path: polygon(0 35%, 62% 35%, 62% 0, 100% 50%, 62% 100%, 62% 65%, 0 65%);
            z-index: 5;
            pointer-events: none;
        }

        .journey-step:last-child::after,
        .journey-step:last-child::before {
            display: none;
        }

        .journey-step b {
            display: inline-block;
            margin-bottom: 8px;
            color: #1f3c34;
            font-size: 0.95rem;
        }

        .support-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 22px;
        }

        .support-card {
            background: #ffffff;
            border: 1px solid #dfd2bd;
            border-radius: 18px;
            padding: 22px;
        }

        .support-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            border: 1px solid rgba(12, 72, 63, 0.16);
            background: linear-gradient(145deg, #eaf6f3, #dff1ec);
            color: #0f7b6c;
        }

        .support-icon svg {
            width: 22px;
            height: 22px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .support-icon--onboarding {
            background: linear-gradient(145deg, #edf2fa, #e3ecfb);
            border-color: rgba(35, 80, 150, 0.18);
            color: #2f5c9a;
        }

        .support-icon--care {
            background: linear-gradient(145deg, #fbefe8, #fae4d8);
            border-color: rgba(190, 86, 29, 0.18);
            color: #c25a28;
        }

        .support-icon--training {
            background: linear-gradient(145deg, #f2f0fa, #ece7fc);
            border-color: rgba(102, 73, 160, 0.2);
            color: #6c52a8;
        }

        .support-card h3 {
            font-family: inherit;
            font-size: 1.06rem;
            margin-bottom: 8px;
        }

        .updates-list {
            margin-top: 22px;
            display: grid;
            gap: 14px;
        }

        .update-item {
            display: grid;
            grid-template-columns: 140px 1fr auto;
            gap: 16px;
            align-items: center;
            background: #fffdf8;
            border: 1px solid #e2d7c4;
            border-radius: 16px;
            padding: 14px;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: #e8f4f1;
            color: #1e7163;
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            padding: 7px 10px;
        }

        .update-item h3 {
            font-family: inherit;
            font-size: 1.03rem;
            margin-bottom: 4px;
        }

        .legal-hero,
        .support-hero {
            padding: 56px 0 28px;
        }

        .legal-hero h1,
        .support-hero h1 {
            margin: 0;
            font-size: clamp(2rem, 4vw, 3.1rem);
            line-height: 1.14;
        }

        .legal-sub,
        .support-sub {
            margin-top: 14px;
            color: var(--muted);
            font-size: 1.04rem;
            /* max-width: 760px; */
        }

        .panel {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: 20px;
            padding: 22px;
            margin: 18px 0;
            box-shadow: 0 10px 26px rgba(26, 37, 31, 0.08);
        }

        .panel h2 {
            margin: 0 0 10px;
            font-size: 1.3rem;
        }

        .panel p {
            margin: 0;
            color: #445347;
        }

        .panel ul {
            margin: 10px 0 0;
            padding-left: 18px;
            color: #445347;
        }

        .request-delete-form-panel {
            max-width: 720px;
            margin: 0 auto 56px;
        }

        .request-delete-field {
            display: grid;
            gap: 8px;
            margin-bottom: 18px;
        }

        .request-delete-field label {
            font-weight: 700;
        }

        .request-delete-field input {
            width: 100%;
            border: 1px solid var(--line);
            border-radius: 10px;
            padding: 12px 14px;
            color: var(--text);
            background: var(--surface);
            font: inherit;
        }

        .request-delete-field input:focus {
            outline: 2px solid rgba(15, 123, 108, 0.28);
            border-color: var(--brand);
        }

        .request-delete-message {
            margin: 0 0 22px;
            padding: 12px 14px;
            border: 1px solid #9dc6bc;
            border-radius: 10px;
            color: #14594f;
            background: #edf8f4;
        }

        .change-log-table-wrap {
            overflow-x: auto;
        }

        .change-log-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 760px;
        }

        .change-log-table th,
        .change-log-table td {
            border-bottom: 1px solid #e4d8c5;
            padding: 12px 10px;
            text-align: left;
            vertical-align: top;
            color: #33473b;
            font-size: 0.96rem;
        }

        .change-log-table thead th {
            background: #f8f1e4;
            color: #1f3c34;
            font-weight: 800;
            white-space: nowrap;
        }

        .change-log-table tbody tr:hover {
            background: #fffbf2;
        }

        .change-log-table th:first-child,
        .change-log-table td:first-child {
            width: 56px;
        }

        .change-log-table th:nth-child(2),
        .change-log-table td:nth-child(2) {
            width: 120px;
            white-space: nowrap;
            font-weight: 700;
            color: #1f3c34;
        }

        .change-log-table tbody td:nth-child(1),
        .change-log-table tbody td:nth-child(2),
        .change-log-table tbody td:nth-child(3) {
            vertical-align: middle;
        }

        .change-log-table th:nth-child(3),
        .change-log-table td:nth-child(3) {
            width: 130px;
            white-space: nowrap;
        }

        .change-log-changes {
            margin: 0;
            padding-left: 20px;
        }

        .change-log-changes li + li {
            margin-top: 4px;
        }

        .admin-users-table-wrap {
            overflow-x: auto;
            border: 1px solid #dfe8e3;
            border-radius: 14px;
            background: #fff;
            box-shadow: 0 12px 28px rgba(24, 55, 45, 0.08);
        }

        .admin-users-grid {
            width: 100%;
            min-width: 1080px;
            border-collapse: separate;
            border-spacing: 0;
            color: #213a31;
            background: #fff;
        }

        .admin-users-grid__header,
        .admin-users-grid__cell {
            padding: 16px 18px;
            border-bottom: 1px solid #e9efec;
            text-align: left;
            vertical-align: middle;
        }

        .admin-users-grid__header {
            position: sticky;
            top: 0;
            z-index: 1;
            color: #587167;
            background: #f6faf8;
            font-size: 0.73rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .admin-users-grid__cell {
            color: #284238;
            font-size: 0.92rem;
            line-height: 1.45;
        }

        .admin-users-grid__row {
            transition: background-color 0.18s ease, box-shadow 0.18s ease;
        }

        .admin-users-grid__row:hover {
            background: #f3faf7;
            box-shadow: inset 3px 0 0 #0f7b6c;
        }

        .admin-users-grid__row:last-child .admin-users-grid__cell {
            border-bottom: 0;
        }

        .admin-users-grid__summary {
            margin: 16px 18px 0;
            color: #6a8177;
            font-size: 0.88rem;
        }

        .admin-users-grid__header:first-child,
        .admin-users-grid__cell:first-child {
            width: 54px;
            color: #6a8177;
            text-align: center;
            font-variant-numeric: tabular-nums;
        }

        .admin-users-grid__header:nth-child(2),
        .admin-users-grid__cell:nth-child(2) {
            min-width: 130px;
            font-weight: 700;
            white-space: nowrap;
        }

        .admin-users-grid__header:nth-child(4),
        .admin-users-grid__cell:nth-child(4) {
            min-width: 120px;
            white-space: nowrap;
        }

        .admin-users-grid__header:nth-child(5),
        .admin-users-grid__cell:nth-child(5) {
            min-width: 220px;
        }

        .admin-users-grid__header:nth-child(6),
        .admin-users-grid__cell:nth-child(6),
        .admin-users-grid__header:nth-child(7),
        .admin-users-grid__cell:nth-child(7),
        .admin-users-grid__header:nth-child(8),
        .admin-users-grid__cell:nth-child(8) {
            white-space: nowrap;
        }

        .admin-users-pagination {
            display: flex;
            justify-content: flex-end;
            margin: 20px 0 2px;
        }

        .admin-users-pagination__list {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .admin-users-pagination__link {
            display: inline-flex;
            min-width: 38px;
            min-height: 38px;
            align-items: center;
            justify-content: center;
            padding: 6px 11px;
            border: 1px solid #d4e1db;
            border-radius: 9px;
            color: #326354;
            background: #fff;
            font-size: 0.88rem;
            font-weight: 700;
            text-decoration: none;
            transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
        }

        .admin-users-pagination__link:hover {
            border-color: #8ac3b6;
            background: #eaf6f2;
        }

        .admin-users-pagination__item.is-active .admin-users-pagination__link {
            border-color: #0f7b6c;
            color: #fff;
            background: #0f7b6c;
        }

        .admin-users-pagination__item.is-disabled .admin-users-pagination__link {
            pointer-events: none;
            color: #9aaba3;
            background: #f5f7f6;
        }

        .support-main-grid {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 16px;
            margin: 20px 0 24px;
        }

        .support-info-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: 18px;
            padding: 20px;
            box-shadow: 0 10px 24px rgba(24, 36, 30, 0.08);
        }

        .support-info-card h2 {
            margin: 0 0 10px;
            font-size: 1.25rem;
        }

        .support-info-card p {
            margin: 0;
            color: #425145;
        }

        .support-list {
            margin: 10px 0 0;
            padding-left: 18px;
            color: #425145;
        }

        .channels {
            display: grid;
            gap: 10px;
            margin-top: 12px;
        }

        .channel {
            border: 1px solid #e2d7c4;
            background: #fdf8ef;
            border-radius: 12px;
            padding: 12px;
            color: #425145;
        }

        .channel b {
            display: block;
            margin-bottom: 3px;
            color: #21382f;
        }

        .cta-row {
            margin-top: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .reveal {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 1100px) {
            .nav-links {
                gap: 12px;
                justify-content: flex-start;
            }

            .hero-grid,
            .support-grid,
            .footer-grid,
            .support-main-grid {
                grid-template-columns: 1fr;
            }

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

            .update-item {
                grid-template-columns: 1fr;
                align-items: start;
            }
        }

        @media (max-width: 900px) {
            .support-main-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 860px) {
            .nav-toggle {
                display: inline-grid;
                place-items: center;
            }

            .nav-links,
            .search {
                display: none;
            }

            .site-header.open .nav-wrap {
                flex-wrap: wrap;
                padding: 14px 0;
            }

            .site-header.open .nav-links {
                display: grid;
                width: 100%;
                order: 3;
                margin: 4px 0 8px;
                border-top: 1px solid #e4d8c5;
                padding-top: 10px;
            }

            .site-header.open .search {
                display: flex;
                width: 100%;
                min-width: auto;
                order: 4;
            }

            .site-header.open .nav-utils .btn {
                display: none;
            }

            .overview-grid,
            .solutions-grid,
            .testimonials-grid,
            .metric-grid {
                grid-template-columns: 1fr;
            }

            .store-links {
                flex-direction: column;
                align-items: flex-start;
            }

            .section {
                padding: 76px 0;
            }
        }
