:root {
    --brand-ink: #0f172a;
    --brand-text: #475569;
    --brand-muted: #94a3b8;
    --brand-line: rgba(15, 23, 42, 0.08);
    --brand-soft: #f8fafc;
    --brand-accent: #0f766e;
    --brand-accent-strong: #0b5f65;
    --brand-highlight: #f59e0b;
    --brand-gradient: linear-gradient(135deg, #0f172a 0%, #0f766e 62%, #f59e0b 100%);
    --brand-glow: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(245, 158, 11, 0.12));
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.08);
    --shadow-card: 0 16px 40px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 22px 45px rgba(15, 118, 110, 0.15);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: var(--brand-text);
    background: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

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

iframe,
video {
    max-width: 100%;
    display: block;
}

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

main {
    position: relative;
    z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1rem;
    color: var(--brand-ink);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.08;
}

p {
    margin: 0 0 1rem;
}

p,
li,
.btn,
.nav-link {
    overflow-wrap: anywhere;
}

.site-backdrop {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 35%),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(248, 250, 252, 0.9), rgba(255, 255, 255, 0.98));
    z-index: 0;
    pointer-events: none;
}

.section {
    padding: 100px 0;
}

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

.section-alt {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.86), rgba(255, 255, 255, 0.96));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--brand-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-intro {
    max-width: 680px;
    margin-bottom: 3rem;
}

.section-intro.d-flex {
    max-width: none;
}

.section-intro.d-flex > :first-child {
    max-width: 680px;
}

.section-intro h2 {
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    margin-bottom: 1rem;
}

.section-intro p {
    font-size: 0.98rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.site-header .container {
    max-width: 1460px;
}

.site-header.is-scrolled {
    padding: 10px 0;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.navbar {
    padding: 0;
}

.navbar-collapse {
    gap: 0.9rem;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-ink);
    white-space: nowrap;
    flex-shrink: 0;
}

.brand-mark--video {
    gap: 0;
}

.brand-mark--image {
    gap: 0;
}

.brand-mark__image {
    display: block;
    width: auto;
    height: 50px;
    object-fit: contain;
}

.brand-mark__video {
    display: block;
    width: auto;
    height: 50px;
    object-fit: contain;
}

.brand-mark strong {
    color: var(--brand-accent);
}

.footer-brand {
    white-space: normal;
    line-height: 1.05;
}

.nav-link {
    color: var(--brand-text);
    font-size: 0.98rem;
    font-weight: 600;
    padding: 0.7rem 0.85rem !important;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.nav-link.active,
.nav-link:hover {
    color: var(--brand-ink);
}

.nav-primary {
    align-items: center;
    flex-wrap: nowrap;
}

.nav-item--dropdown {
    position: relative;
}

.nav-link--dropdown {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-dropdown-caret {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
}

.nav-item--dropdown.is-open .nav-dropdown-caret,
.nav-item--dropdown:hover .nav-dropdown-caret,
.nav-item--dropdown:focus-within .nav-dropdown-caret {
    transform: rotate(-135deg) translateY(-1px);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 30;
    display: grid;
    gap: 0;
    min-width: 320px;
    padding: 0.55rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.985);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item--dropdown.is-open .nav-dropdown,
.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-dropdown__link {
    display: block;
    padding: 0.78rem 1rem;
    border-radius: 0;
    background: transparent;
    color: #7b8798;
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.18s ease, background 0.18s ease;
}

.nav-dropdown__link + .nav-dropdown__link {
    border-top: 0;
}

.nav-dropdown__link:hover,
.nav-dropdown__link:focus {
    background: transparent;
    color: #355ddf;
}

.nav-dropdown__link.active {
    border-top: 0;
    border-radius: 0;
    background: transparent;
    color: #355ddf;
    font-weight: 700;
}

.nav-dropdown__link.active + .nav-dropdown__link {
    border-top-color: transparent;
}

.btn {
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.82rem 1.25rem;
    white-space: normal;
    text-align: center;
}

.btn-gradient {
    color: #ffffff;
    border: none;
    background: var(--brand-gradient);
    box-shadow: var(--shadow-card);
}

.btn-gradient:hover,
.btn-gradient:focus {
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-outline-brand {
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: var(--brand-ink);
    background: #ffffff;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    border-color: rgba(15, 118, 110, 0.26);
    color: var(--brand-accent);
    background: rgba(15, 118, 110, 0.04);
}

.btn-link-dark {
    color: var(--brand-ink);
    font-weight: 700;
}

.header-actions {
    flex-shrink: 0;
}

.hero {
    position: relative;
    padding: 110px 0 90px;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 2rem;
    align-items: center;
}

.hero__grid > *,
.service-hero__grid > *,
.contact-grid > *,
.footer-grid > *,
.cta-panel > * {
    min-width: 0;
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
}

.hero p.lead {
    max-width: 620px;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card,
.feature-card,
.service-card,
.case-card,
.team-card,
.testimonial-card,
.blog-card,
.value-card,
.contact-card,
.admin-card,
.content-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--brand-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.stat-card {
    padding: 1.4rem;
}

.stat-card strong {
    display: block;
    font-size: 1.55rem;
    color: var(--brand-ink);
    font-family: 'Outfit', sans-serif;
}

.hero-panel {
    position: relative;
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.98), rgba(15, 118, 110, 0.96));
    color: rgba(255, 255, 255, 0.84);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
    overflow: hidden;
}

.hero-panel::before,
.hero-panel::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-panel::before {
    width: 220px;
    height: 220px;
    top: -80px;
    right: -70px;
}

.hero-panel::after {
    width: 150px;
    height: 150px;
    bottom: -45px;
    left: -35px;
}

.hero-panel h2,
.hero-panel h3 {
    color: #ffffff;
}

.hero-panel h2 {
    font-size: clamp(1.7rem, 2.6vw, 2.35rem);
}

.hero-panel__label {
    display: inline-flex;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-panel__list {
    display: grid;
    gap: 0.95rem;
    margin: 1.8rem 0 0;
    padding: 0;
    list-style: none;
}

.hero-panel__list li {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel__list li > :last-child,
.service-process__item > :last-child {
    min-width: 0;
}

.hero-panel__list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--brand-accent);
    flex-shrink: 0;
    overflow: hidden;
}

.icon-wrap svg,
.service-card svg,
.feature-card svg,
.value-card svg {
    width: 24px;
    height: 24px;
}

.icon-wrap__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-wrap__image--contain {
    padding: 0.85rem;
    object-fit: contain;
}

.service-grid,
.case-grid,
.team-grid,
.blog-grid,
.testimonial-grid,
.value-grid,
.contact-grid,
.admin-grid {
    display: grid;
    gap: 1.5rem;
}

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

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

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

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.service-card,
.case-card,
.team-card,
.testimonial-card,
.blog-card,
.feature-card,
.value-card,
.contact-card,
.admin-card,
.content-card {
    padding: 1.7rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.case-card:hover,
.team-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.feature-card:hover,
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card h3,
.case-card h3,
.team-card h3,
.blog-card h3,
.feature-card h3,
.value-card h3 {
    font-size: 1.18rem;
}

.card-kicker {
    color: var(--brand-accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--brand-ink);
    font-weight: 700;
}

.card-link svg {
    width: 18px;
    height: 18px;
}

.metric-list {
    display: grid;
    gap: 0.6rem;
    margin: 1.2rem 0 0;
    padding: 0;
    list-style: none;
}

.metric-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    color: var(--brand-ink);
    font-weight: 600;
}

.metric-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    margin-top: 0.45rem;
    border-radius: 999px;
    background: var(--brand-gradient);
    flex-shrink: 0;
}

.trust-panel {
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: var(--brand-glow);
    border: 1px solid rgba(15, 118, 110, 0.08);
}

.team-avatar,
.blog-visual,
.case-visual,
.map-placeholder,
.article-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.98), rgba(15, 118, 110, 0.94));
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.team-avatar {
    width: 74px;
    height: 74px;
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
    overflow: hidden;
}

.team-avatar--image {
    background: #dbe5e4;
    box-shadow: none;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-visual,
.case-visual,
.article-visual,
.map-placeholder {
    min-height: 220px;
    margin-bottom: 1.4rem;
    overflow: hidden;
}

.blog-visual::after,
.case-visual::after,
.article-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.42));
}

.card-visual__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-visual small,
.blog-visual small,
.article-visual small,
.map-placeholder span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.case-visual--detail {
    min-height: 320px;
}

.map-embed {
    min-height: 220px;
    margin-bottom: 1.4rem;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--brand-line);
    box-shadow: var(--shadow-card);
    background: #dbe5e4;
}

.map-embed iframe {
    display: block;
    width: 100%;
    min-height: 220px;
    border: 0;
}

.page-banner {
    padding: 92px 0 50px;
}

.page-banner__inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.page-banner__inner h1 {
    font-size: clamp(1.95rem, 3.6vw, 3.15rem);
    margin-bottom: 1rem;
}

.page-banner__inner p {
    font-size: 0.98rem;
}

.content-panel {
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: #ffffff;
    border: 1px solid var(--brand-line);
    box-shadow: var(--shadow-card);
}

.content-panel ul {
    padding-left: 1.1rem;
}

.content-panel .metric-list,
.content-panel .service-chip-list {
    padding-left: 0;
}

.service-hero {
    padding: 92px 0 56px;
}

.service-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: 1.75rem;
    align-items: start;
}

.service-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.15rem);
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.service-hero__lead {
    max-width: 760px;
    font-size: 1.04rem;
    margin-bottom: 1.75rem;
}

.service-hero__stats,
.service-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.service-stat-card {
    padding: 1.2rem 1.15rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--brand-line);
    box-shadow: var(--shadow-card);
}

.service-stat-card strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--brand-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
}

.service-stat-card span {
    color: var(--brand-text);
    font-size: 0.92rem;
}

.service-hero__panel {
    background:
        radial-gradient(circle at top right, rgba(15, 118, 110, 0.1), transparent 38%),
        #ffffff;
}

.service-hero__media {
    min-height: 240px;
    margin-bottom: 1.4rem;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.98), rgba(15, 118, 110, 0.94));
}

.service-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1rem 0 1.4rem;
    padding: 0;
    list-style: none;
}

.service-chip-list li {
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--brand-ink);
    font-weight: 600;
    line-height: 1.4;
}

.service-chip-list--stacked li {
    width: 100%;
}

.service-process {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.service-process__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.service-process__item:first-child {
    padding-top: 0;
    border-top: none;
}

.service-process__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--brand-accent);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.service-process__item h3,
.service-faq-card h3 {
    margin-bottom: 0.55rem;
    font-size: 1.08rem;
}

.service-cta-panel {
    box-shadow: 0 28px 50px rgba(15, 118, 110, 0.2);
}

.pricing-showcase {
    --pricing-accent: #6a31d8;
    --pricing-accent-soft: rgba(106, 49, 216, 0.12);
    --pricing-line: rgba(106, 49, 216, 0.22);
    --pricing-button-bg: rgba(106, 49, 216, 0.08);
    --pricing-accent-strong-local: #5123b8;
    --pricing-accent-shadow: rgba(106, 49, 216, 0.22);
    background:
        radial-gradient(circle at top left, rgba(106, 49, 216, 0.08), transparent 32%),
        radial-gradient(circle at top right, rgba(77, 185, 141, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(247, 246, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.page-pricing .pricing-showcase {
    padding-top: 3rem;
}

.pricing-showcase[data-pricing-theme="button-sender"] {
    --pricing-accent: #6a31d8;
    --pricing-accent-soft: rgba(106, 49, 216, 0.12);
    --pricing-line: rgba(106, 49, 216, 0.22);
    --pricing-button-bg: rgba(106, 49, 216, 0.08);
    --pricing-accent-strong-local: #5123b8;
    --pricing-accent-shadow: rgba(106, 49, 216, 0.22);
    background:
        radial-gradient(circle at top left, rgba(106, 49, 216, 0.08), transparent 32%),
        radial-gradient(circle at top right, rgba(77, 185, 141, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(247, 246, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.pricing-showcase[data-pricing-theme="button-pro-sender"] {
    --pricing-accent: #6a31d8;
    --pricing-accent-soft: rgba(106, 49, 216, 0.12);
    --pricing-line: rgba(106, 49, 216, 0.22);
    --pricing-button-bg: rgba(106, 49, 216, 0.08);
    --pricing-accent-strong-local: #5123b8;
    --pricing-accent-shadow: rgba(106, 49, 216, 0.22);
    background:
        radial-gradient(circle at top left, rgba(106, 49, 216, 0.08), transparent 32%),
        radial-gradient(circle at top right, rgba(77, 185, 141, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(247, 246, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.pricing-showcase[data-pricing-theme="official-api"] {
    --pricing-accent: #6a31d8;
    --pricing-accent-soft: rgba(106, 49, 216, 0.12);
    --pricing-line: rgba(106, 49, 216, 0.22);
    --pricing-button-bg: rgba(106, 49, 216, 0.08);
    --pricing-accent-strong-local: #5123b8;
    --pricing-accent-shadow: rgba(106, 49, 216, 0.22);
    background:
        radial-gradient(circle at top left, rgba(106, 49, 216, 0.08), transparent 32%),
        radial-gradient(circle at top right, rgba(77, 185, 141, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(247, 246, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.pricing-showcase[data-pricing-theme="cloud-sender"] {
    --pricing-accent: #6a31d8;
    --pricing-accent-soft: rgba(106, 49, 216, 0.12);
    --pricing-line: rgba(106, 49, 216, 0.22);
    --pricing-button-bg: rgba(106, 49, 216, 0.08);
    --pricing-accent-strong-local: #5123b8;
    --pricing-accent-shadow: rgba(106, 49, 216, 0.22);
    background:
        radial-gradient(circle at top left, rgba(106, 49, 216, 0.08), transparent 32%),
        radial-gradient(circle at top right, rgba(77, 185, 141, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(247, 246, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.pricing-showcase__intro {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.pricing-showcase__eyebrow {
    background: var(--pricing-accent-soft);
    color: var(--pricing-accent);
}

.pricing-showcase__switches {
    display: grid;
    gap: 0.9rem;
    justify-items: center;
    margin-bottom: 1.9rem;
}

.pricing-toggle-group {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
}

.pricing-toggle {
    border: 1px solid var(--pricing-line);
    border-radius: 999px;
    padding: 0.85rem 1.8rem;
    background: var(--pricing-button-bg);
    color: var(--pricing-accent);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.pricing-toggle:hover {
    transform: translateY(-1px);
}

.pricing-toggle.is-active {
    background: linear-gradient(135deg, var(--pricing-accent-strong-local) 0%, var(--pricing-accent) 100%);
    color: #ffffff;
    box-shadow: 0 16px 30px var(--pricing-accent-shadow);
}

.pricing-toggle--muted {
    min-width: 234px;
}

.pricing-panel__meta {
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-panel__meta h3 {
    margin-bottom: 0.45rem;
    font-size: clamp(2.4rem, 4vw, 3.35rem);
    color: var(--pricing-accent);
    letter-spacing: -0.03em;
}

.pricing-panel__meta p {
    margin-bottom: 0;
    color: #7a7f92;
    font-size: 1.08rem;
    font-weight: 500;
}

.pricing-billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    padding: 0.35rem;
    border: 1px solid var(--pricing-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 36px rgba(106, 49, 216, 0.12);
}

.pricing-billing-toggle__button {
    border: 0;
    border-radius: 999px;
    padding: 0.6rem 1.15rem;
    background: transparent;
    color: var(--pricing-accent);
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-billing-toggle__button.is-active {
    background: linear-gradient(135deg, var(--pricing-accent-strong-local) 0%, var(--pricing-accent) 100%);
    color: #ffffff;
    box-shadow: 0 12px 24px var(--pricing-accent-shadow);
}

.pricing-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 360px));
    gap: 1.75rem;
    align-items: stretch;
    justify-content: center;
    padding-top: 1.15rem;
}

.pricing-card-grid--single {
    grid-template-columns: minmax(0, 420px);
}

.pricing-card {
    position: relative;
    min-height: 100%;
    padding: 2rem 2rem 1.9rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-card);
}

.pricing-card--featured {
    border: 2px solid var(--pricing-accent);
    box-shadow: 0 24px 42px var(--pricing-accent-shadow);
}

.pricing-card__badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pricing-accent-strong-local) 0%, var(--pricing-accent) 100%);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 12px 24px var(--pricing-accent-shadow);
}

.pricing-card h4 {
    margin-bottom: 1rem;
    font-size: 1.45rem;
}

.pricing-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
}

.pricing-card__price-row strong {
    color: var(--pricing-accent);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 4vw, 3.8rem);
    line-height: 1;
}

.pricing-card__price-row span {
    color: var(--brand-text);
    font-size: 0.96rem;
    font-weight: 600;
}

.pricing-card__description {
    margin-bottom: 1.15rem;
    color: #71717a;
    font-size: 0.98rem;
}

.pricing-card__features {
    display: grid;
    gap: 0.65rem;
    margin: 0 0 1.7rem;
    padding: 0;
    list-style: none;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: var(--brand-ink);
    font-size: 0.95rem;
    line-height: 1.4;
}

.pricing-card__features li::before {
    content: '✓';
    flex: 0 0 auto;
    color: #22c55e;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.1;
}

.pricing-card__features li.pricing-card__feature--disabled {
    color: var(--brand-text);
}

.pricing-card__features li.pricing-card__feature--disabled::before {
    content: '✖';
    color: #f25a2b;
    font-size: 1.08rem;
    line-height: 1.05;
    font-weight: 500;
}

.pricing-card__cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0.95rem 1.2rem;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--pricing-accent-strong-local) 0%, var(--pricing-accent) 100%);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card__cta:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 18px 28px var(--pricing-accent-shadow);
}

.pricing-showcase__note {
    margin: 1.5rem 0 0;
    color: #b45309;
    font-weight: 700;
    text-align: center;
}

.founder-note {
    background: var(--brand-gradient);
    color: rgba(255, 255, 255, 0.9);
}

.founder-note h2,
.founder-note h3,
.founder-note p {
    color: inherit;
}

.testimonial-card blockquote {
    margin: 0 0 1.5rem;
    color: var(--brand-ink);
    font-size: 0.96rem;
    font-weight: 600;
}

.contact-card h3 {
    margin-bottom: 0.8rem;
}

.contact-form .form-control,
.contact-form .form-select,
.admin-form .form-control,
.admin-form .form-select,
.admin-form .form-check-input {
    border-radius: 18px;
    border-color: rgba(15, 23, 42, 0.12);
    padding: 0.95rem 1.1rem;
    box-shadow: none;
}

.contact-form textarea.form-control,
.admin-form textarea.form-control {
    min-height: 150px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus,
.admin-form .form-control:focus,
.admin-form .form-select:focus {
    border-color: rgba(15, 118, 110, 0.28);
    box-shadow: 0 0 0 0.25rem rgba(15, 118, 110, 0.12);
}

.contact-grid--split {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: start;
}

.contact-grid__main,
.contact-grid__aside,
.contact-grid__aside .contact-card {
    min-width: 0;
}

.contact-grid__aside {
    align-self: start;
}

.contact-card a:not(.btn) {
    overflow-wrap: anywhere;
}

.contact-card .d-flex {
    align-items: stretch;
}

.custom-alert {
    border: none;
    border-radius: 18px;
    box-shadow: var(--shadow-card);
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) auto;
    gap: 2rem;
    align-items: center;
    padding: 2.4rem;
    border-radius: var(--radius-xl);
    background: var(--brand-gradient);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 28px 50px rgba(15, 118, 110, 0.2);
}

.cta-panel h2,
.cta-panel p {
    color: inherit;
}

.site-footer {
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
    gap: 2rem;
    padding: 2.2rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--brand-line);
    box-shadow: var(--shadow-card);
}

.footer-copy {
    max-width: 320px;
    margin: 1rem 0 1.4rem;
}

.footer-grid h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a:hover {
    color: var(--brand-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1.1rem 0 0;
    color: var(--brand-muted);
}

.article-body {
    font-size: 0.98rem;
}

.article-body p + p {
    margin-top: 1rem;
}

.article-body img,
.article-body iframe {
    max-width: 100%;
    height: auto;
}

.article-body table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.admin-body {
    background: #f4f7fb;
}

.admin-shell {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    align-self: start;
    min-height: 100vh;
    padding: 2rem;
    background: linear-gradient(180deg, #0f172a, #102342);
    color: rgba(255, 255, 255, 0.76);
}

.admin-sidebar__copy {
    margin: 1rem 0 2rem;
}

.admin-nav {
    display: grid;
    gap: 0.65rem;
}

.admin-nav a {
    padding: 0.9rem 1rem;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.78);
    transition: background 0.25s ease, color 0.25s ease;
}

.admin-nav a.active,
.admin-nav a:hover {
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
}

.admin-content {
    padding: 2rem;
}

.admin-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

.admin-topbar__eyebrow {
    margin-bottom: 0.35rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-accent);
}

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

.admin-card strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--brand-muted);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-card span {
    color: var(--brand-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
}

.admin-table {
    width: 100%;
}

.admin-table th,
.admin-table td {
    vertical-align: top;
    padding: 1rem 0.9rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.admin-table th {
    color: var(--brand-muted);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-table td {
    color: var(--brand-ink);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.support-ticket-admin-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.support-ticket-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.support-ticket-filter a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.78rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #ffffff;
    color: var(--brand-ink);
    font-weight: 700;
    text-decoration: none;
}

.support-ticket-filter a.active,
.support-ticket-filter a:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #0b1020 0%, #0f4c9a 62%, #46c06b 100%);
    border-color: transparent;
}

.support-ticket-admin-card {
    display: grid;
    gap: 1.5rem;
}

.support-ticket-admin-card__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.support-ticket-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
    color: var(--brand-muted);
    font-size: 0.94rem;
}

.support-ticket-meta a {
    color: inherit;
}

.support-ticket-meta--stacked {
    align-items: center;
}

.support-ticket-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.support-ticket-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.support-ticket-chip--status {
    background: rgba(15, 23, 42, 0.08);
    color: var(--brand-ink);
}

.support-ticket-chip--open {
    background: rgba(249, 115, 22, 0.14);
    color: #c2410c;
}

.support-ticket-chip--in-progress {
    background: rgba(59, 130, 246, 0.14);
    color: #1d4ed8;
}

.support-ticket-chip--waiting-customer {
    background: rgba(168, 85, 247, 0.14);
    color: #7c3aed;
}

.support-ticket-chip--resolved {
    background: rgba(34, 197, 94, 0.14);
    color: #15803d;
}

.support-ticket-chip--closed {
    background: rgba(107, 114, 128, 0.14);
    color: #4b5563;
}

.support-ticket-chip--priority {
    background: rgba(15, 118, 110, 0.08);
    color: var(--brand-accent);
}

.support-ticket-chip--low {
    background: rgba(148, 163, 184, 0.16);
    color: #475569;
}

.support-ticket-chip--medium {
    background: rgba(59, 130, 246, 0.14);
    color: #1d4ed8;
}

.support-ticket-chip--high {
    background: rgba(245, 158, 11, 0.18);
    color: #b45309;
}

.support-ticket-chip--urgent {
    background: rgba(239, 68, 68, 0.14);
    color: #b91c1c;
}

.support-ticket-admin-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 1.5rem;
}

.support-ticket-admin-summary {
    display: grid;
    gap: 1rem;
}

.support-ticket-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.support-ticket-detail-grid div,
.support-ticket-message {
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(248, 250, 252, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.support-ticket-detail-grid strong,
.support-ticket-message strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--brand-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.support-ticket-detail-grid span,
.support-ticket-message p {
    color: var(--brand-ink);
}

.support-ticket-message--team {
    background: rgba(240, 247, 255, 0.88);
}

.support-ticket-message--thread {
    background: rgba(255, 255, 255, 0.98);
}

.support-ticket-message--attachments {
    background: rgba(255, 255, 255, 0.98);
}

.support-ticket-thread-admin {
    display: grid;
    gap: 0.85rem;
    margin-top: 0.95rem;
}

.support-ticket-thread-admin__item {
    display: grid;
    gap: 0.45rem;
}

.support-ticket-thread-admin__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
    color: var(--brand-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.support-ticket-thread-admin__bubble {
    padding: 0.9rem 1rem;
    border-radius: 16px;
    color: var(--brand-ink);
    line-height: 1.7;
    background: rgba(248, 250, 252, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.support-ticket-thread-admin__item.is-team .support-ticket-thread-admin__bubble {
    background: rgba(239, 246, 255, 0.92);
    border-color: rgba(59, 130, 246, 0.14);
}

.support-ticket-thread-admin__item.is-customer .support-ticket-thread-admin__bubble {
    background: rgba(255, 255, 255, 0.98);
}

.support-ticket-attachment-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 0.9rem;
}

.support-ticket-attachment-link {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 0.95rem;
    border-radius: 14px;
    background: rgba(52, 93, 223, 0.08);
    border: 1px solid rgba(52, 93, 223, 0.12);
    color: var(--brand-blue-deep);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.support-ticket-attachment-link:hover,
.support-ticket-attachment-link:focus {
    background: rgba(52, 93, 223, 0.12);
    color: var(--brand-blue-deep);
}

.support-ticket-update-form {
    align-self: start;
}

.support-ticket-update-form textarea.form-control {
    min-height: 150px;
}

.admin-footer {
    margin-top: 2rem;
    color: var(--brand-muted);
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.14), transparent 32%),
        radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.14), transparent 30%),
        #f4f7fb;
}

.auth-card {
    width: min(100%, 460px);
    padding: 2.4rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--brand-line);
    box-shadow: var(--shadow-soft);
}

.auth-card h1 {
    font-size: 1.75rem;
}

.stack-list {
    display: grid;
    gap: 1rem;
}

.badge-soft {
    display: inline-flex;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--brand-accent);
    font-size: 0.78rem;
    font-weight: 700;
}

.table-responsive {
    border-radius: var(--radius-lg);
}

@media (max-width: 1199.98px) {
    .hero__grid,
    .service-hero__grid,
    .footer-grid,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .pricing-card-grid {
        grid-template-columns: minmax(280px, 420px);
    }

    .service-grid,
    .case-grid,
    .blog-grid,
    .testimonial-grid,
    .feature-grid,
    .value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .site-header .container {
        max-width: 1320px;
    }
}

@media (max-width: 991.98px) {
    .section {
        padding: 84px 0;
    }

    .hero {
        padding-top: 82px;
    }

    .hero-stats,
    .service-hero__stats,
    .service-faq-grid,
    .admin-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: relative;
        min-height: auto;
    }

    .admin-content {
        padding-top: 1rem;
    }

    .navbar-collapse {
        gap: 0;
        width: 100%;
        margin-top: 0.95rem;
        padding: 1rem;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: var(--shadow-card);
    }

    .navbar-collapse.show {
        max-height: calc(100vh - 92px);
        overflow-y: auto;
    }

    .nav-primary {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 0.15rem;
    }

    .nav-primary .nav-item {
        width: 100%;
    }

    .nav-primary .nav-link,
    .nav-dropdown-toggle,
    .header-actions .btn-link-dark {
        display: block;
        width: 100%;
        padding: 0.85rem 1rem !important;
        border-radius: 16px;
    }

    .nav-link--dropdown {
        display: flex;
        justify-content: space-between;
        text-align: left;
    }

    .nav-primary .nav-link.active {
        background: rgba(15, 118, 110, 0.08);
    }

    .nav-dropdown {
        position: static;
        left: auto;
        top: auto;
        min-width: 0;
        margin-top: 0.35rem;
        padding: 0.6rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.92);
        border-color: rgba(15, 23, 42, 0.06);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        display: none;
    }

    .nav-item--dropdown.is-open .nav-dropdown {
        display: grid;
    }

    .nav-dropdown__link {
        white-space: normal;
        padding: 0.88rem 1rem;
    }

    .header-actions {
        flex-shrink: 1;
        width: 100%;
        margin-top: 0.9rem;
        padding-top: 0.9rem;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
    }

    .header-actions .btn,
    .header-actions .btn-link {
        display: block;
        width: 100%;
        justify-content: center;
    }

    .contact-grid--split {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-grid__main,
    .contact-grid__aside {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .section,
    .section-sm {
        padding: 72px 0;
    }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 2.65rem);
    }

    .service-hero h1 {
        font-size: clamp(1.95rem, 9vw, 2.7rem);
    }

    .page-banner__inner h1 {
        font-size: 1.95rem;
    }

    .service-grid,
    .case-grid,
    .team-grid,
    .blog-grid,
    .testimonial-grid,
    .feature-grid,
    .value-grid,
    .contact-grid,
    .admin-grid,
    .service-faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats,
    .service-hero__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-toggle--muted {
        min-width: 0;
    }

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

    .site-header {
        padding: 10px 0;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .site-header .brand-mark {
        min-width: 0;
        max-width: calc(100% - 72px);
        flex-shrink: 1;
        font-size: 1rem;
    }

    .site-header .brand-mark:not(.brand-mark--video) {
        white-space: normal;
        line-height: 1.05;
    }

    .site-header .brand-mark__video {
        height: 42px;
    }

    .site-header .brand-mark__image {
        height: 42px;
    }

    .navbar-toggler {
        padding: 0.45rem;
        border-radius: 14px;
        background: rgba(15, 118, 110, 0.08);
    }

    .nav-link {
        white-space: normal;
    }

    .hero,
    .service-hero {
        padding-top: 64px;
    }

    .hero {
        padding-bottom: 56px;
    }

    .hero__grid,
    .service-hero__grid {
        gap: 1.5rem;
    }

    .section-intro {
        margin-bottom: 2rem;
    }

    .section-intro.d-flex {
        align-items: flex-start !important;
    }

    .section-intro.d-flex .btn {
        width: 100%;
    }

    .hero p.lead,
    .service-hero__lead {
        font-size: 0.96rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 1.6rem;
    }

    .hero-actions .btn {
        display: block;
        width: 100%;
        justify-content: center;
    }

    .blog-visual,
    .case-visual,
    .article-visual,
    .map-embed {
        min-height: 200px;
    }

    .case-visual--detail,
    .service-hero__media {
        min-height: 220px;
    }

    .service-card,
    .case-card,
    .team-card,
    .testimonial-card,
    .blog-card,
    .feature-card,
    .value-card,
    .contact-card,
    .admin-card,
    .content-card,
    .pricing-card {
        padding: 1.35rem;
    }

    .trust-panel {
        padding: 1.5rem;
    }

    .stat-card,
    .service-stat-card {
        padding: 1.15rem;
    }

    .hero-panel__list li {
        gap: 0.75rem;
    }

    .service-process__item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .service-process__step {
        width: 38px;
        height: 38px;
    }

    .pricing-showcase__switches {
        justify-items: stretch;
    }

    .pricing-toggle-group {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
    }

    .pricing-toggle {
        width: 100%;
    }

    .pricing-billing-toggle {
        width: 100%;
        justify-content: center;
    }

    .pricing-billing-toggle__button {
        flex: 1 1 0;
        text-align: center;
    }

    .pricing-card__badge {
        position: static;
        display: inline-flex;
        margin-bottom: 1rem;
        transform: none;
    }

    .pricing-card__price-row {
        flex-wrap: wrap;
        gap: 0.4rem 0.7rem;
    }

    .footer-grid,
    .cta-panel,
    .hero-panel,
    .content-panel {
        padding: 1.5rem;
    }

    .footer-bottom,
    .admin-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-banner {
        padding: 74px 0 40px;
    }

    .contact-card .map-embed {
        margin-bottom: 0;
    }

    .auth-card {
        padding: 1.5rem;
    }

    .contact-form .form-control,
    .contact-form .form-select {
        font-size: 16px;
    }

    .contact-grid__main .section-intro {
        max-width: none;
    }

    .contact-card .d-flex {
        flex-direction: column;
    }

    .contact-card .btn,
    .contact-form .btn {
        width: 100%;
    }

    .footer-copy {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .section,
    .section-sm {
        padding: 60px 0;
    }

    .container {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .eyebrow {
        font-size: 0.72rem;
        padding: 0.45rem 0.75rem;
    }

    .hero,
    .service-hero {
        padding-top: 56px;
    }

    .hero {
        padding-bottom: 48px;
    }

    .hero-panel::before {
        width: 180px;
        height: 180px;
        top: -72px;
        right: -64px;
    }

    .hero-panel::after {
        width: 120px;
        height: 120px;
        bottom: -36px;
        left: -28px;
    }

    .footer-grid,
    .cta-panel,
    .hero-panel,
    .content-panel,
    .trust-panel,
    .pricing-card {
        padding: 1.25rem;
    }

    .hero-stats,
    .service-hero__stats {
        gap: 0.75rem;
    }

    .service-chip-list li {
        width: 100%;
        border-radius: 18px;
    }

    .pricing-card__badge,
    .pricing-card__price-row {
        justify-content: flex-start;
    }

    .pricing-card__price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .contact-card .btn,
    .footer-grid .btn,
    .cta-panel .btn {
        width: 100%;
    }

    .footer-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 479.98px) {
    .hero-stats,
    .service-hero__stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .support-ticket-admin-layout {
        grid-template-columns: 1fr;
    }

    .support-ticket-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .support-ticket-admin-card__head,
    .support-ticket-admin-toolbar {
        flex-direction: column;
    }
}

/* Admin premium redesign */
.admin-body {
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 24%),
        linear-gradient(180deg, #f6f9ff 0%, #eef4fb 100%);
}

.admin-shell {
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: stretch;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    min-height: 100vh;
    padding: 0;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.94));
    box-shadow: 14px 0 50px rgba(15, 23, 42, 0.04);
    color: var(--brand-text);
}

.admin-sidebar__body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    padding: 1.5rem;
}

.admin-sidebar__brand-block {
    padding: 0.25rem 0 0.5rem;
}

.admin-brand {
    margin-bottom: 0.85rem;
}

.admin-brand .brand-mark__video {
    height: 54px;
}

.admin-brand .brand-mark__image {
    height: 54px;
}

.admin-sidebar__copy {
    margin: 0 0 1rem;
    color: var(--brand-text);
    line-height: 1.7;
}

.admin-sidebar__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.admin-sidebar__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: var(--brand-ink);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.admin-sidebar__badge--success {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}

.admin-sidebar__badge--warning {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
}

.admin-sidebar__badge--danger {
    background: rgba(239, 68, 68, 0.14);
    color: #b91c1c;
}

.admin-sidebar__nav {
    display: grid;
    gap: 1rem;
}

.admin-nav-group {
    display: grid;
    gap: 0.75rem;
}

.admin-nav-group__title {
    margin: 0;
    color: var(--brand-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-nav {
    display: grid;
    gap: 0.45rem;
}

.admin-nav__link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    border-radius: 20px;
    border: 1px solid transparent;
    color: #455468;
    background: transparent;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.admin-nav__link:hover,
.admin-nav__link.active {
    transform: translateY(-1px);
    color: var(--brand-ink);
    background: linear-gradient(135deg, rgba(15, 76, 154, 0.08), rgba(70, 192, 107, 0.08));
    border-color: rgba(15, 76, 154, 0.1);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.admin-nav__link--logout {
    color: #b91c1c;
    background: rgba(239, 68, 68, 0.06);
    border-color: rgba(239, 68, 68, 0.08);
}

.admin-nav__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--brand-blue, #0f4c9a);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.admin-nav__icon svg {
    width: 20px;
    height: 20px;
}

.admin-sidebar__footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.admin-content {
    padding: 1.5rem;
}

.admin-topbar {
    align-items: center;
    margin-bottom: 1.35rem;
    padding: 1.25rem 1.4rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(20px);
}

.admin-topbar__identity {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.admin-topbar__eyebrow {
    margin-bottom: 0.35rem;
    color: #355ddf;
}

.admin-topbar__copy {
    max-width: 720px;
    color: var(--brand-text);
}

.admin-topbar__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

.admin-menu-toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    color: var(--brand-ink);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.admin-menu-toggle__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.admin-menu-toggle svg {
    width: 20px;
    height: 20px;
}

.admin-user-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.55rem 0.75rem 0.55rem 0.55rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.admin-user-chip__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0b1020 0%, #0f4c9a 62%, #46c06b 100%);
    color: #ffffff;
    font-weight: 800;
}

.admin-user-chip strong,
.admin-user-chip span {
    display: block;
    line-height: 1.2;
}

.admin-user-chip strong {
    color: var(--brand-ink);
    font-size: 0.86rem;
}

.admin-user-chip span:last-child {
    color: var(--brand-muted);
    font-size: 0.78rem;
}

.admin-alert-stack {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

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

.admin-card,
.content-card {
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.admin-card {
    min-height: 168px;
}

.admin-card,
.content-card,
.support-ticket-admin-card {
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.admin-card:hover,
.content-card:hover,
.support-ticket-admin-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 76, 154, 0.12);
}

.admin-card strong {
    font-size: 0.74rem;
    letter-spacing: 0.1em;
}

.admin-card span {
    font-size: clamp(1.55rem, 3vw, 2.4rem);
    line-height: 1.05;
}

.content-card h2,
.content-card .h3,
.content-card .h4 {
    color: var(--brand-ink);
}

.admin-section-head,
.admin-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-toolbar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.admin-search {
    position: relative;
    min-width: min(100%, 280px);
}

.admin-search input {
    width: 100%;
    min-height: 48px;
    padding: 0.8rem 1rem 0.8rem 2.85rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-ink);
    box-shadow: none;
}

.admin-search::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 1rem;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    border: 2px solid rgba(15, 23, 42, 0.32);
    border-radius: 999px;
}

.admin-search::after {
    content: '';
    position: absolute;
    top: calc(50% + 6px);
    left: calc(1rem + 14px);
    width: 7px;
    height: 2px;
    transform: rotate(45deg);
    background: rgba(15, 23, 42, 0.32);
    border-radius: 999px;
}

.admin-table-shell {
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: rgba(255, 255, 255, 0.84);
    overflow: hidden;
}

.table-responsive {
    border-radius: 24px;
}

.admin-table {
    margin-bottom: 0;
    min-width: 720px;
}

.admin-table thead th {
    background: rgba(15, 23, 42, 0.03);
}

.admin-table th,
.admin-table td {
    padding: 1rem;
}

.admin-table tbody tr {
    transition: background 0.2s ease;
}

.admin-table tbody tr:hover {
    background: rgba(15, 76, 154, 0.03);
}

.support-ticket-admin-table {
    min-width: 980px;
}

.support-ticket-admin-table tbody tr.is-selected {
    background: rgba(15, 76, 154, 0.06);
}

.support-ticket-admin-table td:first-child {
    font-weight: 800;
    color: var(--brand-blue-deep);
    white-space: nowrap;
}

.support-ticket-view-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(29, 125, 242, 0.1);
    color: #1d7df2;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.support-ticket-view-link:hover,
.support-ticket-view-link:focus {
    background: rgba(29, 125, 242, 0.16);
    color: #0f5fc1;
    transform: translateY(-1px);
}

.support-ticket-view-link svg {
    width: 22px;
    height: 22px;
}

.admin-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(15, 23, 42, 0.08);
    color: var(--brand-ink);
}

.admin-status-badge--active,
.admin-status-badge--paid,
.admin-status-badge--published,
.admin-status-badge--won,
.admin-status-badge--resolved {
    background: rgba(34, 197, 94, 0.14);
    color: #15803d;
}

.admin-status-badge--draft,
.admin-status-badge--failed,
.admin-status-badge--verification-failed,
.admin-status-badge--inactive,
.admin-status-badge--closed,
.admin-status-badge--lost {
    background: rgba(107, 114, 128, 0.14);
    color: #475569;
}

.admin-status-badge--new,
.admin-status-badge--created,
.admin-status-badge--open {
    background: rgba(249, 115, 22, 0.14);
    color: #c2410c;
}

.admin-status-badge--contacted,
.admin-status-badge--authorized,
.admin-status-badge--in-progress,
.admin-status-badge--contacted_lead,
.admin-status-badge--qualified {
    background: rgba(59, 130, 246, 0.14);
    color: #1d4ed8;
}

.admin-status-badge--waiting-customer {
    background: rgba(168, 85, 247, 0.14);
    color: #7c3aed;
}

.admin-status-badge--refunded {
    background: rgba(168, 85, 247, 0.14);
    color: #7c3aed;
}

.admin-form {
    display: grid;
    gap: 1rem;
}

.admin-form .form-label {
    margin-bottom: 0.45rem;
    color: var(--brand-ink);
    font-weight: 700;
}

.admin-form .form-control,
.admin-form .form-select,
.admin-form .form-check-input {
    border-radius: 18px;
    border-color: rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.96);
}

.admin-form textarea.form-control {
    min-height: 140px;
}

.admin-form .form-control:focus,
.admin-form .form-select:focus {
    border-color: rgba(15, 76, 154, 0.22);
    box-shadow: 0 0 0 0.25rem rgba(15, 76, 154, 0.1);
}

.admin-form .form-check {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.admin-form .form-check-input {
    flex: 0 0 auto;
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0;
    padding: 0;
    border-radius: 0.35rem;
    border: 1.5px solid rgba(15, 76, 154, 0.28);
    background-color: #ffffff;
    background-size: 0.75rem;
    cursor: pointer;
}

.admin-form .form-check-input:checked {
    background-color: #0f4c9a;
    border-color: #0f4c9a;
}

.admin-form .form-check-input:focus {
    border-color: rgba(15, 76, 154, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(15, 76, 154, 0.14);
}

.admin-form .form-check-label {
    margin-bottom: 0;
    color: var(--brand-ink);
    font-weight: 500;
    cursor: pointer;
}

.admin-form-section {
    padding: 1.2rem;
    border-radius: 24px;
    background: rgba(250, 252, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.admin-form-section__title {
    margin-bottom: 0.85rem;
}

.admin-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.admin-form-actions__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.admin-helper-text {
    color: var(--brand-muted);
    font-size: 0.88rem;
}

.admin-empty-state {
    padding: 2rem;
    border-radius: 24px;
    border: 1px dashed rgba(15, 23, 42, 0.12);
    text-align: center;
    background: rgba(255, 255, 255, 0.62);
}

.admin-list-card {
    padding: 1.1rem 1.15rem;
    border-radius: 20px;
    background: rgba(250, 252, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.admin-list-card h3,
.admin-list-card .h5 {
    margin-bottom: 0.35rem;
}

.admin-mini-list {
    display: grid;
    gap: 0.9rem;
}

.admin-table__empty {
    padding: 1.25rem;
    color: var(--brand-muted);
    text-align: center;
    font-weight: 600;
}

.admin-product-cell {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.admin-product-thumb {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(248, 251, 255, 0.94);
}

.admin-product-thumb--placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue-deep);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.admin-product-preview {
    display: flex;
    justify-content: flex-start;
}

.admin-product-preview__image {
    width: min(100%, 220px);
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.admin-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.admin-filter-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    color: var(--brand-ink);
    font-weight: 700;
}

.admin-filter-pill.is-active,
.admin-filter-pill:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #0b1020 0%, #0f4c9a 62%, #46c06b 100%);
    border-color: transparent;
}

.admin-footer {
    margin-top: 1.4rem;
    padding: 1rem 0 0;
}

.admin-footer__content {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--brand-muted);
    font-size: 0.9rem;
}

.admin-footer__content a {
    color: var(--brand-blue, #0f4c9a);
    font-weight: 700;
}

.auth-shell {
    min-height: 100vh;
    padding: 1.6rem;
    background:
        radial-gradient(circle at top left, rgba(15, 76, 154, 0.16), transparent 28%),
        radial-gradient(circle at bottom right, rgba(70, 192, 107, 0.14), transparent 24%),
        linear-gradient(180deg, #f5f8ff 0%, #eef4fb 100%);
}

.auth-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
    gap: 1.5rem;
    max-width: 1180px;
    margin: 0 auto;
    min-height: calc(100vh - 3.2rem);
    align-items: center;
}

.auth-panel,
.auth-card {
    border-radius: 32px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(22px);
}

.auth-panel {
    position: relative;
    overflow: hidden;
    padding: 2.4rem;
    background:
        radial-gradient(circle at top right, rgba(15, 76, 154, 0.12), transparent 32%),
        radial-gradient(circle at bottom left, rgba(70, 192, 107, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.94));
}

.auth-panel__grid {
    display: grid;
    gap: 1.5rem;
}

.auth-panel__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.auth-panel__stat {
    padding: 1rem 1.1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.auth-panel__stat strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--brand-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
}

.auth-panel__list {
    display: grid;
    gap: 0.8rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.auth-panel__list li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.auth-panel__list li::before {
    content: '';
    width: 10px;
    height: 10px;
    margin-top: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f4c9a 0%, #46c06b 100%);
    flex-shrink: 0;
}

.auth-card {
    width: 100%;
    padding: 2.2rem;
}

.auth-card__head {
    margin-bottom: 1.5rem;
}

.auth-card__footer {
    margin-top: 1.25rem;
    color: var(--brand-muted);
    font-size: 0.9rem;
}

.auth-shell--login-demo {
    padding: 2rem 2.4rem;
    background: #e9eef3;
}

.auth-layout--login-demo {
    max-width: 1180px;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 392px);
    gap: 3rem;
    align-items: center;
}

.auth-panel--scene {
    padding: 0;
    min-height: 600px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.auth-panel__brand {
    display: none;
}

.auth-panel__copy {
    display: none;
}

.auth-scene {
    position: relative;
    min-height: 560px;
    border-radius: 0;
    background: transparent;
    overflow: visible;
    box-shadow: none;
}

.auth-scene::after {
    content: '';
    position: absolute;
    left: 4%;
    right: 24%;
    bottom: 22px;
    height: 6px;
    border-radius: 999px;
    background: rgba(143, 154, 171, 0.22);
}

.auth-scene__calendar,
.auth-scene__clock,
.auth-scene__desk,
.auth-scene__monitor,
.auth-scene__lamp,
.auth-scene__chair,
.auth-scene__cup {
    position: absolute;
}

.auth-scene__calendar {
    top: 94px;
    left: 34px;
    width: 156px;
    height: 124px;
    border-radius: 0;
    background:
        linear-gradient(180deg, #4d80d7 0 20px, #ffffff 20px 100%);
}

.auth-scene__calendar::before {
    content: '';
    position: absolute;
    inset: 20px 0 0;
    background-image:
        linear-gradient(rgba(112, 132, 168, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(112, 132, 168, 0.15) 1px, transparent 1px);
    background-size: 29px 25px;
}

.auth-scene__calendar span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: #1d2d4d;
    border-radius: 999px;
    top: 74px;
    left: 30px;
    transform-origin: center;
    transform: rotate(45deg);
}

.auth-scene__calendar span:nth-child(2) {
    width: 18px;
    height: 2px;
    top: 74px;
    left: 30px;
    transform: rotate(-45deg);
}

.auth-scene__calendar span:nth-child(3),
.auth-scene__calendar span:nth-child(4),
.auth-scene__calendar span:nth-child(5),
.auth-scene__calendar span:nth-child(6) {
    display: none;
}

.auth-scene__clock {
    top: 28px;
    right: 246px;
    width: 86px;
    height: 86px;
    border: 8px solid #4b7fd8;
    border-radius: 50%;
    background: #ffffff;
}

.auth-scene__clock::before,
.auth-scene__clock::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 999px;
    background: #18243c;
    transform-origin: 0 0;
}

.auth-scene__clock::before {
    width: 4px;
    height: 28px;
    transform: translate(-50%, -88%) rotate(0deg);
}

.auth-scene__clock::after {
    width: 4px;
    height: 24px;
    transform: translate(-8%, -30%) rotate(-52deg);
}

.auth-scene__desk {
    left: 40px;
    right: 96px;
    bottom: 70px;
    height: 194px;
}

.auth-scene__desk-top {
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    height: 16px;
    border-radius: 4px;
    background: linear-gradient(180deg, #274d89, #183c73);
}

.auth-scene__desk-leg,
.auth-scene__desk-foot {
    position: absolute;
    background: #4f7fd7;
}

.auth-scene__desk-leg {
    top: 100px;
    width: 7px;
    height: 94px;
}

.auth-scene__desk-leg--left {
    left: 54px;
    transform: rotate(12deg);
}

.auth-scene__desk-leg--right {
    right: 60px;
    transform: rotate(-12deg);
}

.auth-scene__desk-foot {
    bottom: -2px;
    width: 72px;
    height: 6px;
    border-radius: 999px;
}

.auth-scene__desk-foot--left {
    left: 18px;
}

.auth-scene__desk-foot--right {
    right: 24px;
}

.auth-scene__monitor {
    left: 210px;
    bottom: 170px;
    width: 224px;
    height: 140px;
    border-radius: 12px;
    background: #29559a;
    padding: 12px;
}

.auth-scene__monitor-screen {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(235, 242, 252, 0.92)),
        linear-gradient(180deg, rgba(75, 127, 216, 0.16), rgba(75, 127, 216, 0));
}

.auth-scene__monitor-screen::before,
.auth-scene__monitor-screen::after {
    content: '';
    position: absolute;
    border-radius: 8px;
    background: rgba(75, 127, 216, 0.28);
}

.auth-scene__monitor-screen::before {
    left: 26px;
    top: 34px;
    width: 56px;
    height: 42px;
}

.auth-scene__monitor-screen::after {
    right: 24px;
    top: 28px;
    width: 68px;
    height: 56px;
}

.auth-scene__monitor-base {
    position: absolute;
    left: 50%;
    bottom: -28px;
    width: 64px;
    height: 22px;
    border-radius: 0 0 12px 12px;
    background: #9db3d9;
    transform: translateX(-50%);
}

.auth-scene__lamp {
    right: 78px;
    bottom: 84px;
    width: 132px;
    height: 210px;
}

.auth-scene__lamp-head,
.auth-scene__lamp-arm,
.auth-scene__lamp-base {
    position: absolute;
    background: #1a4076;
}

.auth-scene__lamp-head {
    top: 8px;
    left: 22px;
    width: 44px;
    height: 24px;
    border-radius: 999px 999px 18px 18px;
    background: #4b7fd8;
}

.auth-scene__lamp-head::after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    top: 14px;
    height: 74px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.auth-scene__lamp-arm {
    width: 7px;
    border-radius: 999px;
}

.auth-scene__lamp-arm--top {
    top: 24px;
    right: 36px;
    height: 102px;
    transform: rotate(34deg);
}

.auth-scene__lamp-arm--bottom {
    top: 110px;
    right: 24px;
    height: 88px;
    transform: rotate(-28deg);
}

.auth-scene__lamp-base {
    right: 0;
    bottom: 0;
    width: 60px;
    height: 12px;
    border-radius: 999px;
}

.auth-scene__chair {
    left: 136px;
    bottom: 18px;
    width: 154px;
    height: 290px;
}

.auth-scene__chair-back,
.auth-scene__chair-seat,
.auth-scene__chair-pillar,
.auth-scene__chair-wheel {
    position: absolute;
}

.auth-scene__chair-back {
    left: 18px;
    top: 0;
    width: 88px;
    height: 178px;
    border-radius: 20px;
    background: linear-gradient(180deg, #5b88da, #3f6fca);
    transform: skew(-8deg);
}

.auth-scene__chair-seat {
    left: 56px;
    top: 170px;
    width: 90px;
    height: 24px;
    border-radius: 14px;
    background: #204986;
}

.auth-scene__chair-pillar {
    left: 82px;
    top: 192px;
    width: 10px;
    height: 84px;
    border-radius: 999px;
    background: #1b355d;
}

.auth-scene__chair-pillar::before,
.auth-scene__chair-pillar::after {
    content: '';
    position: absolute;
    left: -18px;
    right: -18px;
    height: 6px;
    border-radius: 999px;
    background: #1b355d;
}

.auth-scene__chair-pillar::before {
    bottom: 20px;
    transform: rotate(24deg);
}

.auth-scene__chair-pillar::after {
    bottom: 20px;
    transform: rotate(-24deg);
}

.auth-scene__chair-wheel {
    bottom: 0;
    width: 12px;
    height: 12px;
    border: 4px solid #1b355d;
    border-radius: 50%;
    background: #ffffff;
}

.auth-scene__chair-wheel--left {
    left: 30px;
}

.auth-scene__chair-wheel--center {
    left: 70px;
}

.auth-scene__chair-wheel--right {
    right: 8px;
}

.auth-scene__cup {
    left: 42px;
    bottom: 120px;
    width: 34px;
    height: 48px;
    border-radius: 0 0 10px 10px;
    background: #ffffff;
}

.auth-scene__cup::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 8px;
    width: 18px;
    height: 18px;
    border: 4px solid #d8e2f0;
    border-left: 0;
    border-radius: 0 12px 12px 0;
}

.auth-card--demo {
    padding: 0;
    overflow: hidden;
    max-width: 380px;
    justify-self: end;
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

.auth-login-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.9rem 2rem 1.8rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    color: #234a84;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
}

.auth-login-card__icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    color: #2c68be;
}

.auth-login-card__icon svg {
    width: 100%;
    height: 100%;
}

.auth-login-card__body {
    padding: 1.25rem 2rem 2rem;
}

.auth-card__head--demo {
    margin-bottom: 1.2rem;
    text-align: center;
}

.auth-login-card__microcopy {
    margin: 0;
    color: #174b90;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1;
    text-transform: uppercase;
}

.auth-login-card__notice {
    min-height: 24px;
    margin: 0 0 0.4rem;
    color: transparent;
    font-size: 0.88rem;
    text-align: center;
}

.auth-login-card__notice.is-error {
    color: #a21818;
}

.auth-login-card__tagline {
    margin: 0.55rem 0 0;
    color: #3d587f;
    font-size: 0.98rem;
    line-height: 1.3;
}

.auth-login-form {
    display: grid;
    gap: 0.9rem;
}

.auth-login-form__field {
    display: grid;
}

.auth-login-form__control {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: center;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.auth-login-form__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 54px;
    color: #4d7fce;
}

.auth-login-form__icon svg {
    width: 23px;
    height: 23px;
}

.auth-login-form__control .form-control {
    border: 0;
    border-radius: 0;
    min-height: 54px;
    padding-left: 0;
    box-shadow: none;
    background: transparent;
    color: #173157;
    font-size: 1rem;
}

.auth-login-form__control .form-control::placeholder {
    color: #b7c3d4;
}

.auth-login-form__control .form-control:focus {
    box-shadow: none;
}

.auth-login-form__actions {
    display: grid;
    gap: 0;
    margin-top: 1.35rem;
}

.auth-login-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
    justify-content: center;
    border-radius: 999px;
    min-height: 48px;
    border: 0;
    background: linear-gradient(180deg, #5a8be0 0%, #4c79cf 100%);
    box-shadow: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
}

.auth-login-form__submit:hover,
.auth-login-form__submit:focus {
    box-shadow: none;
}

.auth-login-form__submit-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
}

.auth-login-form__submit-icon svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 1199.98px) {
    .admin-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .auth-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .auth-layout--login-demo {
        max-width: 760px;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .auth-card--demo {
        justify-self: stretch;
        max-width: none;
    }
}

@media (max-width: 991.98px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar.offcanvas-lg {
        width: min(320px, calc(100vw - 24px));
        border-right: 0;
        border-radius: 0 28px 28px 0;
    }

    .admin-content {
        padding: 1rem;
    }

    .admin-topbar {
        align-items: flex-start;
    }

    .admin-topbar,
    .admin-topbar__actions,
    .admin-toolbar,
    .admin-section-head {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-user-chip {
        width: 100%;
        justify-content: flex-start;
    }

    .admin-topbar__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .auth-panel__stats {
        grid-template-columns: 1fr;
    }

    .auth-panel--scene {
        min-height: 440px;
    }

    .auth-scene {
        min-height: 400px;
    }

    .auth-scene__clock {
        right: 48px;
    }

    .auth-scene__lamp {
        right: 28px;
    }
}

@media (max-width: 767.98px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .admin-card,
    .content-card,
    .auth-card,
    .auth-panel {
        padding: 1.35rem;
    }

    .admin-search {
        width: 100%;
        min-width: 0;
    }

    .admin-form-actions,
    .admin-form-actions__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-form-actions__buttons .btn,
    .admin-form-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .auth-layout--login-demo {
        gap: 1.1rem;
    }

    .auth-panel--scene {
        min-height: auto;
    }

    .auth-scene {
        min-height: 280px;
    }

    .auth-scene__calendar {
        top: 26px;
        left: 18px;
        width: 100px;
        height: 82px;
    }

    .auth-scene__clock {
        top: 8px;
        right: 28px;
        width: 64px;
        height: 64px;
        border-width: 6px;
    }

    .auth-scene__desk {
        left: 20px;
        right: 20px;
        bottom: 52px;
        height: 122px;
    }

    .auth-scene__monitor {
        left: 118px;
        bottom: 124px;
        width: 114px;
        height: 80px;
    }

    .auth-scene__lamp {
        right: 14px;
        bottom: 76px;
        width: 86px;
        height: 136px;
    }

    .auth-scene__chair {
        left: 78px;
        bottom: 18px;
        width: 94px;
        height: 164px;
    }

    .auth-scene__chair-back {
        width: 60px;
        height: 102px;
    }

    .auth-scene__chair-seat {
        left: 32px;
        top: 94px;
        width: 54px;
        height: 20px;
    }

    .auth-scene__chair-pillar {
        left: 50px;
        top: 112px;
        height: 36px;
    }

    .auth-scene__cup {
        left: 28px;
        bottom: 92px;
        width: 24px;
        height: 34px;
    }

    .auth-card--demo {
        max-width: none;
        border-radius: 32px;
        padding: 0;
    }

    .auth-login-card__header,
    .auth-login-card__body {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .auth-login-card__microcopy {
        font-size: 1.75rem;
    }
}

/* Admin refinement pass: tighter, cleaner, quieter */
.admin-body {
    background:
        radial-gradient(circle at top left, rgba(15, 76, 154, 0.05), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.admin-shell {
    grid-template-columns: 286px minmax(0, 1fr);
}

.admin-sidebar {
    box-shadow: 12px 0 36px rgba(15, 23, 42, 0.03);
}

.admin-sidebar__body {
    gap: 1.2rem;
    padding: 1.2rem 1rem;
}

.admin-sidebar__brand-block {
    padding: 0.15rem 0 0.35rem;
}

.admin-brand {
    margin-bottom: 0.65rem;
}

.admin-brand .brand-mark__video {
    height: 48px;
}

.admin-brand .brand-mark__image {
    height: 48px;
}

.admin-sidebar__copy {
    margin: 0 0 0.85rem;
    font-size: 0.95rem;
    line-height: 1.55;
}

.admin-sidebar__meta {
    gap: 0.5rem;
}

.admin-sidebar__badge {
    min-height: 32px;
    padding: 0.3rem 0.68rem;
    font-size: 0.7rem;
}

.admin-sidebar__nav {
    gap: 0.8rem;
}

.admin-nav-group {
    gap: 0.55rem;
}

.admin-nav-group__title {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
}

.admin-nav {
    gap: 0.35rem;
}

.admin-nav__link {
    gap: 0.72rem;
    padding: 0.74rem 0.8rem;
    border-radius: 16px;
    color: #2f4054;
    font-size: 0.95rem;
    font-weight: 600;
}

.admin-nav__link:hover,
.admin-nav__link.active {
    transform: none;
    background: rgba(15, 76, 154, 0.06);
    border-color: rgba(15, 76, 154, 0.08);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.admin-nav__link span:last-child {
    min-width: 0;
    line-height: 1.3;
}

.admin-nav__icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    box-shadow: none;
}

.admin-nav__icon svg {
    width: 18px;
    height: 18px;
}

.admin-sidebar__footer {
    padding-top: 0.85rem;
}

.admin-content {
    padding: 1.1rem 1.15rem 1.4rem;
    min-width: 0;
}

.admin-topbar {
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(16px);
}

.admin-topbar__identity {
    align-items: flex-start;
    gap: 0.85rem;
    max-width: 720px;
}

.admin-topbar__eyebrow {
    margin-bottom: 0.25rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

.admin-topbar h1 {
    margin: 0 0 0.4rem;
    font-size: clamp(2rem, 3vw, 2.9rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.admin-topbar__copy {
    max-width: 620px;
    font-size: 0.98rem;
    line-height: 1.6;
}

.admin-topbar__actions {
    align-items: flex-start;
    gap: 0.55rem;
}

.admin-topbar__actions .btn {
    min-height: 44px;
    padding: 0.72rem 1rem;
    border-radius: 16px;
}

.admin-split-actions .btn {
    min-width: 0;
}

.admin-split-actions .dropdown-toggle-split {
    padding-inline: 0.86rem;
}

.admin-action-menu {
    min-width: 220px;
    padding: 0.5rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.admin-action-menu .dropdown-item {
    min-height: 44px;
    border-radius: 12px;
    color: var(--brand-ink);
    font-weight: 700;
}

.admin-action-menu .dropdown-item:hover,
.admin-action-menu .dropdown-item:focus {
    color: var(--brand-ink);
    background: rgba(15, 76, 154, 0.06);
}

.admin-menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.admin-user-chip {
    gap: 0.65rem;
    padding: 0.4rem 0.68rem 0.4rem 0.42rem;
    min-width: 0;
}

.admin-user-chip__avatar {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.admin-user-chip strong {
    font-size: 0.82rem;
}

.admin-user-chip span:last-child {
    font-size: 0.76rem;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-alert-stack {
    margin-bottom: 0.85rem;
}

.admin-grid {
    gap: 1rem;
}

.admin-card,
.content-card {
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.admin-card {
    min-height: 132px;
}

.admin-card:hover,
.content-card:hover,
.support-ticket-admin-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}

.admin-card strong {
    margin-bottom: 0.55rem;
    font-size: 0.72rem;
    letter-spacing: 0.09em;
}

.admin-card span {
    font-size: clamp(1.45rem, 2.6vw, 2.2rem);
    line-height: 1;
}

.admin-card--metric {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.4rem;
    min-height: 122px;
}

.admin-card__hint {
    color: var(--brand-muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.admin-card--meta {
    min-width: 0;
}

.admin-card__meta-text {
    margin: 0;
    color: var(--brand-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.admin-toolbar__actions {
    gap: 0.6rem;
}

.admin-search {
    min-width: min(100%, 240px);
}

.admin-search input {
    min-height: 44px;
    padding: 0.72rem 1rem 0.72rem 2.6rem;
}

.admin-search::before {
    width: 16px;
    height: 16px;
}

.admin-search::after {
    top: calc(50% + 5px);
    left: calc(1rem + 12px);
    width: 6px;
}

.admin-table-shell,
.table-responsive {
    border-radius: 20px;
}

.admin-table th,
.admin-table td {
    padding: 0.88rem 0.95rem;
}

.admin-form-section {
    padding: 1rem;
    border-radius: 20px;
}

.content-card--full {
    width: 100%;
}

.admin-form-drawer {
    width: min(680px, 100vw);
    border-left: 1px solid rgba(15, 23, 42, 0.08);
    background:
        radial-gradient(circle at top right, rgba(15, 76, 154, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 255, 0.97));
    box-shadow: -20px 0 40px rgba(15, 23, 42, 0.08);
}

.admin-form-drawer__header {
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    align-items: flex-start;
}

.admin-form-drawer__body {
    padding: 1.25rem;
}

.admin-form-drawer .btn-close {
    margin: 0;
}

.admin-empty-state {
    padding: 1.5rem;
    border-radius: 20px;
}

.admin-list-card {
    padding: 0.95rem 1rem;
    border-radius: 18px;
}

.admin-filter-pill {
    min-height: 36px;
    padding: 0.45rem 0.82rem;
}

.support-ticket-filter {
    gap: 0.55rem;
}

.support-ticket-filter a {
    padding: 0.62rem 0.9rem;
}

.support-ticket-admin-card {
    gap: 1.1rem;
}

.support-ticket-admin-card__head {
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.support-ticket-chip {
    min-height: 34px;
    padding: 0.4rem 0.72rem;
    font-size: 0.76rem;
}

.support-ticket-admin-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
    gap: 1rem;
}

.support-ticket-detail-grid {
    gap: 0.85rem;
}

.support-ticket-detail-grid div,
.support-ticket-message {
    padding: 0.9rem 1rem;
    border-radius: 18px;
}

.admin-grid--metrics {
    gap: 0.85rem;
}

.admin-grid--support-metrics {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.admin-footer {
    margin-top: 1rem;
    padding: 0.85rem 0 0;
}

@media (max-width: 1199.98px) {
    .admin-grid--support-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .admin-sidebar.offcanvas-lg {
        width: min(300px, calc(100vw - 24px));
    }

    .admin-split-actions {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .admin-split-actions .btn {
        width: 100%;
    }

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

@media (max-width: 767.98px) {
    .admin-grid--support-metrics {
        grid-template-columns: 1fr;
    }
}

.admin-sidebar .admin-nav .admin-nav__link,
.admin-sidebar .admin-nav .admin-nav__link span:last-child {
    color: #314358;
    opacity: 1;
}

.admin-sidebar .admin-nav .admin-nav__link:hover,
.admin-sidebar .admin-nav .admin-nav__link:hover span:last-child,
.admin-sidebar .admin-nav .admin-nav__link.active,
.admin-sidebar .admin-nav .admin-nav__link.active span:last-child {
    color: var(--brand-ink);
}

.admin-sidebar .admin-nav__link--logout,
.admin-sidebar .admin-nav__link--logout span:last-child {
    color: #b91c1c;
}

.admin-menu-toggle,
.admin-shell-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.admin-toggle-bars {
    display: grid;
    gap: 4px;
}

.admin-toggle-bars span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #172033;
    transition: width 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}

.admin-shell-toggle.is-collapsed .admin-toggle-bars span:nth-child(1) {
    width: 18px;
}

.admin-shell-toggle.is-collapsed .admin-toggle-bars span:nth-child(2) {
    width: 12px;
}

.admin-shell-toggle.is-collapsed .admin-toggle-bars span:nth-child(3) {
    width: 15px;
}

@media (min-width: 992px) {
    .admin-shell {
        grid-template-columns: var(--admin-sidebar-width, 286px) minmax(0, 1fr);
        transition: grid-template-columns 0.22s ease;
    }

    body.admin-sidebar-collapsed {
        --admin-sidebar-width: 92px;
    }

    body.admin-sidebar-collapsed .admin-sidebar__body {
        align-items: center;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    body.admin-sidebar-collapsed .admin-sidebar__brand-block,
    body.admin-sidebar-collapsed .admin-sidebar__nav,
    body.admin-sidebar-collapsed .admin-sidebar__footer {
        width: 100%;
    }

    body.admin-sidebar-collapsed .admin-sidebar__copy,
    body.admin-sidebar-collapsed .admin-sidebar__meta,
    body.admin-sidebar-collapsed .admin-nav-group__title,
    body.admin-sidebar-collapsed .admin-nav__link span:last-child,
    body.admin-sidebar-collapsed .admin-nav__link--logout span:last-child {
        display: none;
    }

    body.admin-sidebar-collapsed .admin-sidebar__nav {
        gap: 0.65rem;
    }

    body.admin-sidebar-collapsed .admin-nav-group {
        gap: 0.4rem;
    }

    body.admin-sidebar-collapsed .admin-nav {
        gap: 0.45rem;
    }

    body.admin-sidebar-collapsed .admin-nav__link {
        justify-content: center;
        padding: 0.72rem;
    }

    body.admin-sidebar-collapsed .admin-nav__icon {
        margin: 0;
    }

    body.admin-sidebar-collapsed .admin-sidebar__footer {
        border-top: 0;
        padding-top: 0.2rem;
    }
}
