:root {
    --bg: #f7fcff;
    --bg-soft: #eef8ff;
    --surface: rgba(255, 255, 255, 0.9);
    --surface-strong: rgba(250, 253, 255, 0.98);
    --surface-light: rgba(255, 255, 255, 0.86);
    --text: #161516;
    --muted: #698194;
    --line: rgba(125, 191, 228, 0.18);
    --accent: #a7dcfb;
    --accent-2: #ffffff;
    --accent-3: #79bfeb;
    --accent-ink: #5d94b7;
    --accent-soft: rgba(167, 220, 251, 0.2);
    --accent-line: rgba(121, 191, 235, 0.34);
    --panel-end: rgba(240, 248, 255, 0.98);
    --shadow: 0 24px 55px rgba(110, 171, 207, 0.15);
    --button-start: #ffffff;
    --button-end: #a3abb3;
    --button-text: #2c3440;
    --button-active: #6b737c;
    --button-border: rgba(125, 130, 137, 0.22);
    --button-shadow: 0 18px 34px rgba(125, 130, 137, 0.2);
    --button-hover-start: #ffffff;
    --button-hover-end: #c2cad2;
    --button-secondary-hover-start: #ffffff;
    --button-secondary-hover-end: #e7f6ff;
    --button-glow: 0 20px 40px rgba(121, 191, 235, 0.22), 0 0 0 4px rgba(167, 220, 251, 0.16);
    --paper-fill: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 249, 255, 0.84));
    --paper-border: rgba(121, 191, 235, 0.14);
    --paper-shadow: 0 26px 58px rgba(110, 171, 207, 0.12);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(121, 191, 235, 0.22), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(167, 220, 251, 0.28), transparent 26%),
        radial-gradient(circle at 50% 100%, rgba(207, 235, 252, 0.34), transparent 30%),
        linear-gradient(180deg, #fcfdff 0%, var(--bg) 36%, var(--bg-soft) 100%);
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(121, 191, 235, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(121, 191, 235, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 92%);
    pointer-events: none;
}

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

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

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

.page-shell {
    position: relative;
    overflow-x: hidden;
}

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

.section {
    padding: 5.5rem 0;
    position: relative;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(247, 252, 255, 0.94);
    border-bottom: 1px solid var(--line);
}

main {
    padding-top: 86px;
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    width: min(250px, 44vw);
    height: auto;
    object-fit: contain;
}

.footer-brand .brand-logo {
    width: min(235px, 52vw);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.45rem;
}

.site-nav a {
    color: var(--muted);
    transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
}

.nav-cta,
.button {
    border: 1px solid var(--button-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.8rem 1.25rem;
    border-radius: 16px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-cta,
.button-primary {
    background: #647d92;
    color: #ffffff;
    border-color: rgba(71, 93, 113, 0.38);
    box-shadow: 0 12px 24px rgba(40, 56, 70, 0.14);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.94);
    color: var(--button-text);
    border-color: rgba(107, 127, 145, 0.2);
    box-shadow: 0 10px 20px rgba(94, 126, 151, 0.1);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
    transform: translateY(-1px);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
    background: #566f84;
    border-color: rgba(71, 93, 113, 0.46);
    box-shadow: 0 14px 24px rgba(40, 56, 70, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: #f8fbfe;
    border-color: rgba(93, 148, 183, 0.24);
    box-shadow: 0 12px 22px rgba(94, 126, 151, 0.12);
}

.button-secondary.is-active {
    background: #eef4f8;
    border-color: rgba(93, 132, 170, 0.28);
    color: var(--accent-ink);
    box-shadow: 0 12px 22px rgba(94, 126, 151, 0.12);
}

.button:active,
.nav-cta:active {
    transform: translateY(0);
    background: #4e667b;
    border-color: #4e667b;
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(40, 56, 70, 0.16);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    background: var(--surface-light);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 0 auto 5px;
}

.nav-toggle span:last-child {
    margin-bottom: 0;
}

.hero {
    padding-top: 4.5rem;
    overflow: hidden;
    isolation: isolate;
}

.hero::before,
.hero::after,
.hero-layout::before {
    content: '';
    position: absolute;
    pointer-events: none;
    border-radius: 28px;
    border: 1px solid var(--paper-border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0) 26%),
        repeating-linear-gradient(180deg, rgba(121, 191, 235, 0.1) 0 2px, transparent 2px 22px),
        var(--paper-fill);
    box-shadow: var(--paper-shadow);
    z-index: 0;
}

.hero::before {
    width: min(340px, 28vw);
    height: min(230px, 22vw);
    top: 2rem;
    right: 6%;
    transform: rotate(-9deg);
    opacity: 0.55;
}

.hero::after {
    width: min(300px, 26vw);
    height: min(210px, 20vw);
    left: -2%;
    bottom: 1.5rem;
    transform: rotate(11deg);
    opacity: 0.34;
}

.hero-layout,
.split-layout,
.contact-layout {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.hero-layout {
    position: relative;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    z-index: 1;
}

.hero-layout::before {
    width: min(280px, 22vw);
    height: min(190px, 16vw);
    top: 8%;
    left: 39%;
    transform: rotate(7deg);
    opacity: 0.28;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    color: var(--accent-ink);
    background: var(--accent-soft);
    border: 1px solid var(--accent-line);
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
}

.section-heading {
    max-width: 730px;
    margin-bottom: 2rem;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    line-height: 1.04;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    letter-spacing: -0.05em;
    max-width: 12ch;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    letter-spacing: -0.04em;
}

h3 {
    font-size: 1.35rem;
}

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.hero-text {
    font-size: 1.08rem;
    max-width: 60ch;
    margin-top: 1.4rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-points {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.contact-points span {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--text);
}

.hero-visual {
    position: relative;
    min-height: 560px;
    perspective: 1400px;
    z-index: 1;
}

.visual-stack {
    position: relative;
    height: 100%;
    transform-style: preserve-3d;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.orbit-one {
    width: 380px;
    height: 380px;
    top: 15%;
    left: 18%;
    background: radial-gradient(circle, rgba(141, 183, 207, 0.34), transparent 65%);
}

.orbit-two {
    width: 320px;
    height: 320px;
    right: 4%;
    bottom: 8%;
    background: radial-gradient(circle, rgba(94, 126, 151, 0.24), transparent 68%);
}

.floating-card,
.trust-card,
.service-card,
.advantage-card,
.process-card,
.solution-card,
.price-card,
.resource-card,
.contact-card,
.cta-shell {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), var(--panel-end));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.floating-card {
    position: absolute;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.visual-main {
    inset: 12% 10% auto 0;
    min-height: 300px;
    transform: translateZ(90px);
}

.visual-side {
    right: 2%;
    top: 12%;
    width: 42%;
    transform: translateZ(140px) rotate(8deg);
}

.visual-stat {
    left: 15%;
    bottom: 6%;
    width: 48%;
    transform: translateZ(110px) rotate(-5deg);
}

.card-label,
.price-note,
.stat-kicker {
    display: inline-block;
    color: var(--accent-ink);
    font-size: 0.92rem;
    margin-bottom: 0.9rem;
}

.card-chip,
.price-badge,
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(141, 183, 207, 0.22);
    color: var(--accent-3);
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-list,
.service-card ul,
.price-card ul {
    margin: 1.2rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.card-list li,
.service-card li,
.price-card li {
    color: var(--text);
    padding-left: 1.4rem;
    position: relative;
}

.card-list li::before,
.service-card li::before,
.price-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
}

.trust-grid,
.service-grid,
.advantage-list,
.process-grid,
.solution-grid,
.pricing-grid,
.resource-grid,
.footer-grid {
    display: grid;
    gap: 1.4rem;
}

.trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2rem;
}

.trust-card,
.service-card,
.advantage-card,
.process-card,
.solution-card,
.price-card,
.resource-card {
    border-radius: var(--radius-lg);
    padding: 1.6rem;
}

.trust-card strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.3rem;
    margin-bottom: 0.6rem;
    font-variant-numeric: tabular-nums;
}

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

.service-card {
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.service-card h3,
.service-card p,
.service-card li,
.service-card .text-link {
    transition: color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.service-card:hover,
.service-card:focus-within {
    background: linear-gradient(180deg, rgba(78, 107, 131, 0.98), rgba(49, 72, 93, 0.98));
    border-color: rgba(49, 72, 93, 0.72);
    box-shadow: 0 24px 44px rgba(49, 72, 93, 0.28);
}

.service-card:hover h3,
.service-card:focus-within h3,
.service-card:hover .text-link,
.service-card:focus-within .text-link {
    color: #ffffff;
}

.service-card:hover p,
.service-card:focus-within p,
.service-card:hover li,
.service-card:focus-within li {
    color: rgba(239, 246, 252, 0.9);
}

.service-card:hover li::before,
.service-card:focus-within li::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(167, 220, 251, 0.92));
}

.split-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

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

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: relative;
    margin-top: 3rem;
    padding: 2.75rem 0 3rem;
    align-items: start;
    isolation: isolate;
}

.process-grid::before,
.process-grid::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.process-grid::before {
    left: 5%;
    right: 5%;
    top: 50%;
    height: 236px;
    transform: translateY(-50%);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 236' preserveAspectRatio='none'%3E%3Cpath d='M72 78 C 158 78 180 180 305 180 S 452 78 575 78 S 720 180 845 180 S 992 78 1128 78' fill='none' stroke='%23dbeefa' stroke-width='10' stroke-linecap='round'/%3E%3Cpath d='M72 94 C 158 94 180 196 305 196 S 452 94 575 94 S 720 196 845 196 S 992 94 1128 94' fill='none' stroke='%2399cbe8' stroke-width='4.5' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
    opacity: 0.96;
    z-index: 0;
}

.process-grid::after {
    inset: 19% 7% 18%;
    background:
        radial-gradient(circle at 12% 35%, rgba(167, 220, 251, 0.16), transparent 16%),
        radial-gradient(circle at 38% 66%, rgba(121, 191, 235, 0.12), transparent 17%),
        radial-gradient(circle at 63% 35%, rgba(167, 220, 251, 0.14), transparent 16%),
        radial-gradient(circle at 88% 66%, rgba(121, 191, 235, 0.12), transparent 17%);
    filter: blur(14px);
    z-index: 0;
}

.process-card {
    position: relative;
    z-index: 1;
    min-height: 246px;
    padding: 2rem 1.9rem 1.85rem;
    border-radius: 30px;
    overflow: visible;
}

.process-card:nth-child(odd) {
    margin-bottom: 8rem;
}

.process-card:nth-child(even) {
    margin-top: 8rem;
}

.process-card::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 5px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(121, 191, 235, 0.68), rgba(93, 148, 183, 0.18));
    box-shadow: 0 0 0 5px rgba(167, 220, 251, 0.07);
    z-index: 0;
}

.process-card:nth-child(odd)::after {
    top: 100%;
    height: 38px;
}

.process-card:nth-child(even)::after {
    bottom: 100%;
    height: 38px;
}

.process-card .step-number {
    position: absolute;
    left: 50%;
    width: 76px;
    min-width: 76px;
    height: 76px;
    padding: 0;
    margin: 0;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 8px solid rgba(184, 226, 248, 0.58);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(231, 244, 251, 0.95));
    color: var(--accent-ink);
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    box-shadow: 0 14px 28px rgba(105, 159, 191, 0.16);
    z-index: 2;
}

.process-card:nth-child(odd) .step-number {
    bottom: -114px;
}

.process-card:nth-child(even) .step-number {
    top: -114px;
}

.process-card h3 {
    margin-bottom: 0.65rem;
}

.process-card p {
    max-width: 16ch;
}

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

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

.price-card.featured {
    border-color: rgba(141, 183, 207, 0.34);
    transform: translateY(-12px);
}

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

.resource-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.resource-card:hover,
.resource-card:focus-within {
    transform: translateY(-6px);
    background: linear-gradient(180deg, rgba(78, 107, 131, 0.98), rgba(49, 72, 93, 0.98));
    border-color: rgba(49, 72, 93, 0.72);
    box-shadow: 0 24px 44px rgba(49, 72, 93, 0.28);
}

.resource-card:hover h3,
.resource-card:focus-within h3 {
    color: #ffffff;
}

.resource-card:hover p,
.resource-card:focus-within p {
    color: rgba(239, 246, 252, 0.9);
}

.cta-banner {
    padding-top: 2rem;
}

.cta-shell {
    border-radius: 30px;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(243, 248, 252, 0.98));
}

.cta-shell h2 {
    max-width: 20ch;
    font-size: clamp(1.45rem, 2.4vw, 2.5rem);
}

.cta-shell .button {
    min-width: 150px;
    flex-shrink: 0;
}

.contact-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.contact-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-3);
    font-weight: 700;
}

.contact-card {
    border-radius: 30px;
    padding: 1.9rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.2rem;
}

.support-ticket-intro {
    margin-top: 0.7rem;
    max-width: 44ch;
}

.support-ticket-box {
    margin-top: 1.25rem;
}

.support-ticket-box > summary {
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.support-ticket-box > summary::-webkit-details-marker {
    display: none;
}

.support-ticket-box[open] .support-ticket-summary {
    background: #566f84;
    border-color: rgba(71, 93, 113, 0.46);
}

.support-ticket-panel {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(84, 107, 129, 0.18);
}

.support-chat-widget {
    position: fixed;
    right: clamp(0.85rem, 2vw, 1.6rem);
    bottom: clamp(0.85rem, 2vw, 1.6rem);
    z-index: 130;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.support-chat-trigger {
    min-height: 54px;
    padding-inline: 1.35rem;
    border-radius: 999px;
    box-shadow: 0 18px 30px rgba(44, 63, 80, 0.24);
}

.support-chat-widget.is-open .support-chat-trigger {
    background: #566f84;
    border-color: rgba(71, 93, 113, 0.46);
}

.support-chat-panel {
    width: min(360px, calc(100vw - 1.4rem));
    padding: 1.05rem;
    border-radius: 24px;
    border: 1px solid rgba(84, 107, 129, 0.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 252, 0.98));
    box-shadow: 0 24px 44px rgba(35, 52, 68, 0.18);
    display: none;
}

.support-chat-widget.is-open .support-chat-panel {
    display: block;
    animation: support-chat-pop 0.2s ease;
}

@keyframes support-chat-pop {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.support-chat-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.85rem;
}

.support-chat-head h3 {
    margin: 0;
    font-size: 1.08rem;
}

.support-chat-head p {
    margin-top: 0.35rem;
    line-height: 1.55;
    font-size: 0.94rem;
}

.support-chat-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(84, 107, 129, 0.18);
    background: rgba(255, 255, 255, 0.96);
    color: var(--accent-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.support-chat-close:hover,
.support-chat-close:focus-visible {
    background: #f2f7fb;
    border-color: rgba(93, 132, 170, 0.26);
    transform: translateY(-1px);
}

.support-chat-form {
    margin-top: 0.9rem;
}

.support-chat-form .field-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.support-chat-form textarea {
    min-height: 118px;
}

.support-chat-form .button {
    width: 100%;
}

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

label {
    display: grid;
    gap: 0.55rem;
}

label span {
    color: var(--text);
    font-size: 0.95rem;
}

input,
select,
textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.88);
    padding: 0.95rem 1rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.password-field {
    position: relative;
}

.password-field input {
    padding-right: 5.25rem;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    min-height: 34px;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(84, 107, 129, 0.16);
    background: linear-gradient(180deg, rgba(244, 248, 252, 0.98), rgba(234, 241, 247, 0.96));
    color: var(--accent-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.password-toggle:hover,
.password-toggle:focus-visible {
    border-color: rgba(93, 132, 170, 0.28);
    background: linear-gradient(180deg, rgba(236, 243, 249, 0.98), rgba(225, 235, 244, 0.96));
    color: #365372;
}

.password-toggle.is-active {
    background: linear-gradient(180deg, rgba(94, 126, 151, 0.96), rgba(63, 87, 107, 0.98));
    border-color: rgba(63, 87, 107, 0.36);
    color: #ffffff;
}

option {
    color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(94, 126, 151, 0.56);
    transform: translateY(-1px);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.form-alert {
    border-radius: 16px;
    padding: 0.95rem 1rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.form-alert.success {
    background: rgba(103, 131, 109, 0.12);
    border: 1px solid rgba(103, 131, 109, 0.28);
    color: #3e5643;
}

.form-alert.error {
    background: rgba(150, 101, 101, 0.12);
    border: 1px solid rgba(150, 101, 101, 0.24);
    color: #6f4545;
}

.site-footer {
    position: relative;
    margin-top: 1.5rem;
    padding: 2.4rem 0 1.5rem;
    border-top: 1px solid rgba(167, 220, 251, 0.14);
    background:
        radial-gradient(circle at top left, rgba(121, 191, 235, 0.18), transparent 24%),
        radial-gradient(circle at 88% 18%, rgba(167, 220, 251, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(66, 88, 109, 0.98), rgba(29, 41, 54, 0.99));
    color: rgba(244, 249, 253, 0.92);
    overflow: hidden;
}

.footer-grid {
    grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.footer-brand {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.site-footer h3 {
    font-size: 1rem;
    margin-bottom: 0.95rem;
    color: #ffffff;
}

.site-footer a {
    display: block;
    color: rgba(220, 231, 239, 0.82);
    margin-bottom: 0.75rem;
}

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

.social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.15rem;
}

.social-links .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 0;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(232, 240, 246, 0.92);
    box-shadow: 0 12px 22px rgba(12, 18, 26, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-links .social-link svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.social-links .social-link:hover,
.social-links .social-link:focus-visible,
.social-links .social-link:active {
    transform: translateY(-2px);
    color: #ffffff;
}

.social-link-linkedin:hover,
.social-link-linkedin:focus-visible,
.social-link-linkedin:active {
    background: #0a66c2;
    border-color: #0a66c2;
    box-shadow: 0 16px 28px rgba(10, 102, 194, 0.34);
}

.social-link-youtube:hover,
.social-link-youtube:focus-visible,
.social-link-youtube:active {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 16px 28px rgba(255, 0, 0, 0.28);
}

.social-link-instagram:hover,
.social-link-instagram:focus-visible,
.social-link-instagram:active {
    background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 45%, #6228d7 100%);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 28px rgba(238, 42, 123, 0.28);
}

.social-link-facebook:hover,
.social-link-facebook:focus-visible,
.social-link-facebook:active {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 16px 28px rgba(24, 119, 242, 0.3);
}

.site-nav a[aria-current="page"] {
    color: var(--text);
}

.site-nav a[aria-current="page"]:not(.nav-cta)::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 0.35rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
}

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(167, 220, 251, 0.14);
}

.footer-bottom p {
    color: rgba(220, 231, 239, 0.78);
}

.footer-bottom .footer-inline-link {
    display: inline;
    margin-bottom: 0;
    color: #5d94b7;
    font-weight: 700;
}

.footer-bottom .footer-inline-link:hover,
.footer-bottom .footer-inline-link:focus-visible {
    color: #8fc9ee;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.page-hero {
    padding-top: 4rem;
}

.page-hero-layout,
.feature-grid,
.detail-grid,
.metric-strip,
.story-grid,
.map-layout,
.contact-quick-grid,
.faq-grid {
    display: grid;
    gap: 1.4rem;
}

.page-hero-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    align-items: stretch;
}

.page-lead {
    margin-top: 1.35rem;
    font-size: 1.08rem;
    max-width: 62ch;
}

.page-panel,
.detail-card,
.metric-card,
.story-card,
.contact-quick-card,
.faq-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), var(--panel-end));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    padding: 1.8rem;
}

.page-panel {
    position: relative;
    overflow: hidden;
}

.page-panel-compact {
    align-self: start;
}

.page-panel::after {
    content: '';
    position: absolute;
    inset: auto -10% -30% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(141, 183, 207, 0.22), transparent 68%);
    pointer-events: none;
}

.page-panel > * {
    position: relative;
    z-index: 1;
}

.page-list {
    margin: 1.35rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.page-list li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--text);
}

.page-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
}

.page-meta {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.page-meta span {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--text);
}

.catalog-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0 1.5rem;
}

.catalog-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--accent-ink);
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.catalog-nav a:hover,
.catalog-nav a:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(49, 72, 93, 0.28);
    box-shadow: 0 14px 24px rgba(49, 72, 93, 0.12);
    color: var(--text);
}

.catalog-stack {
    display: grid;
    gap: 1.4rem;
}

.catalog-card {
    scroll-margin-top: 110px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), var(--panel-end));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    padding: 1.9rem;
}

.catalog-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1.4rem;
}

.catalog-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(141, 183, 207, 0.95), rgba(215, 230, 241, 0.95));
    color: var(--accent-ink);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 12px 24px rgba(94, 126, 151, 0.12);
}

.catalog-header h3 {
    margin-bottom: 0.35rem;
}

.catalog-header p {
    max-width: 70ch;
}

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

.catalog-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.catalog-list li {
    position: relative;
    color: var(--text);
    line-height: 1.6;
    padding-left: 1.7rem;
}

.catalog-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.82em;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 0.2rem;
    transform: translateY(-50%) rotate(45deg);
    background: linear-gradient(135deg, rgba(121, 191, 235, 0.98), rgba(77, 140, 183, 0.96));
    box-shadow: 0 0 0 4px rgba(167, 220, 251, 0.2);
}

.admin-page {
    --bg: #f4f7fb;
    --bg-soft: #edf2f7;
    --surface: rgba(255, 255, 255, 0.95);
    --surface-strong: rgba(255, 255, 255, 0.98);
    --surface-light: rgba(255, 255, 255, 0.9);
    --line: rgba(84, 107, 129, 0.12);
    --accent: #dbe9f5;
    --accent-2: #ffffff;
    --accent-3: #5d84aa;
    --accent-ink: #3f617f;
    --accent-soft: rgba(93, 132, 170, 0.12);
    --accent-line: rgba(93, 132, 170, 0.18);
    --panel-end: rgba(246, 249, 252, 0.98);
    --shadow: 0 24px 50px rgba(34, 53, 71, 0.08);
    --container: 1760px;
    background:
        radial-gradient(circle at top left, rgba(147, 181, 209, 0.14), transparent 30%),
        radial-gradient(circle at 88% 10%, rgba(214, 228, 239, 0.88), transparent 25%),
        linear-gradient(180deg, #f9fbfd 0%, #f3f6fa 48%, #edf2f7 100%);
}

.admin-page::before {
    background-image:
        linear-gradient(rgba(93, 132, 170, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(93, 132, 170, 0.03) 1px, transparent 1px);
}

.admin-auth-page {
    background: linear-gradient(180deg, #fbfdff 0%, #f1f5f9 100%);
}

.admin-auth-page::before {
    background-image: none;
}

.admin-header-inner {
    justify-content: space-between;
    gap: 1rem;
}

.admin-header-actions,
.admin-inline-form {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.admin-header-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.admin-dashboard-section {
    padding-top: 3.4rem;
    padding-bottom: 4.25rem;
}

.admin-auth-section {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 86px);
}

.admin-auth-shell {
    display: flex;
    justify-content: center;
}

.admin-auth-page .admin-auth-section {
    min-height: calc(100vh - 86px);
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

.admin-auth-card {
    width: min(100%, 560px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), var(--panel-end));
    border: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(34, 53, 71, 0.1);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    padding: 2.35rem;
}

.admin-auth-card h1 {
    max-width: 9ch;
}

.admin-auth-page .admin-auth-card {
    width: min(100%, 470px);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 18px 36px rgba(34, 53, 71, 0.09);
}

.admin-auth-page .admin-auth-card h1 {
    max-width: none;
    font-size: clamp(2.2rem, 4vw, 3rem);
    letter-spacing: -0.05em;
}

.admin-auth-page .admin-auth-card .eyebrow {
    margin-bottom: 0.95rem;
}

.admin-auth-page .admin-auth-card .page-lead {
    margin-top: 0.85rem;
    max-width: 32ch;
    font-size: 1rem;
    line-height: 1.7;
}

.admin-auth-form {
    margin-top: 1.5rem;
}

.admin-auth-page .admin-auth-form {
    gap: 0.9rem;
}

.admin-auth-page .admin-auth-form label span {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--accent-ink);
}

.admin-auth-page .admin-auth-form .button {
    width: 100%;
    margin-top: 0.15rem;
}

.admin-modal-open {
    overflow: hidden;
}

.admin-modal-backdrop {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(32, 45, 58, 0.34);
    backdrop-filter: blur(8px);
    z-index: 60;
}

.admin-modal-backdrop.is-open {
    display: flex;
}

.admin-modal-shell {
    width: min(100%, 680px);
}

.admin-modal-card {
    position: relative;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.98));
    border: 1px solid rgba(84, 107, 129, 0.14);
    border-radius: 30px;
    box-shadow: 0 28px 56px rgba(34, 53, 71, 0.16);
}

.admin-modal-card h2 {
    margin-bottom: 0.55rem;
}

.admin-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(84, 107, 129, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--accent-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.admin-modal-form {
    margin-top: 1.5rem;
}

.admin-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.admin-confirm-modal-card {
    max-width: 560px;
}

.admin-confirm-copy {
    max-width: 44ch;
}

.admin-confirm-actions {
    justify-content: flex-end;
}

.admin-confirm-submit.is-warning {
    background: linear-gradient(180deg, rgba(196, 156, 39, 0.96), rgba(143, 100, 4, 0.98));
    border-color: rgba(143, 100, 4, 0.42);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(143, 100, 4, 0.2);
}

.admin-confirm-submit.is-warning:hover,
.admin-confirm-submit.is-warning:focus-visible {
    background: linear-gradient(180deg, rgba(176, 139, 33, 0.98), rgba(125, 87, 4, 0.98));
    border-color: rgba(125, 87, 4, 0.5);
}

.admin-confirm-submit.is-danger {
    background: linear-gradient(180deg, rgba(181, 73, 61, 0.96), rgba(132, 38, 29, 0.98));
    border-color: rgba(132, 38, 29, 0.44);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(132, 38, 29, 0.22);
}

.admin-confirm-submit.is-danger:hover,
.admin-confirm-submit.is-danger:focus-visible {
    background: linear-gradient(180deg, rgba(161, 64, 54, 0.98), rgba(115, 33, 25, 0.98));
    border-color: rgba(115, 33, 25, 0.5);
}

.admin-role-fieldset {
    margin: 0;
    padding: 0;
    border: 0;
    display: grid;
    gap: 0.85rem;
}

.admin-role-fieldset legend {
    padding: 0;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 700;
}

.admin-role-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.admin-role-option {
    position: relative;
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 18px;
    border: 1px solid rgba(84, 107, 129, 0.14);
    background: linear-gradient(180deg, rgba(250, 252, 254, 0.98), rgba(243, 248, 252, 0.96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.admin-role-option:hover,
.admin-role-option:focus-within {
    transform: translateY(-1px);
    border-color: rgba(93, 132, 170, 0.24);
    box-shadow: 0 12px 20px rgba(94, 126, 151, 0.08);
}

.admin-role-option input {
    position: absolute;
    top: 1.1rem;
    left: 1rem;
    width: 1rem;
    height: 1rem;
    margin: 0;
}

.admin-role-option:has(input:checked) {
    border-color: rgba(83, 121, 177, 0.28);
    background: linear-gradient(180deg, rgba(236, 244, 251, 0.98), rgba(227, 239, 249, 0.96));
    box-shadow: 0 14px 24px rgba(83, 121, 177, 0.1);
}

.admin-role-option-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.admin-role-option-copy {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.admin-employees-summary {
    display: grid;
    grid-template-columns: minmax(0, 280px);
    gap: 1rem;
    margin-top: 1.5rem;
}

.admin-employees-total-card {
    min-height: auto;
    background: linear-gradient(180deg, rgba(234, 243, 250, 0.96), rgba(222, 235, 246, 0.98));
    border-color: rgba(93, 132, 170, 0.22);
}

.admin-employees-total-card::after {
    background: radial-gradient(circle, rgba(93, 132, 170, 0.18), transparent 65%);
}

.admin-employees-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.admin-employees-empty-state {
    margin-top: 1.25rem;
}

.admin-employee-card {
    padding: 1.45rem;
    border-radius: 26px;
}

.admin-employee-card.is-inactive {
    background: linear-gradient(180deg, rgba(246, 246, 248, 0.96), rgba(238, 239, 243, 0.98));
    border-color: rgba(120, 126, 138, 0.16);
}

.admin-employee-card-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.72fr);
    gap: 1.4rem;
    align-items: stretch;
}

.admin-employee-card-main {
    min-width: 0;
}

.admin-employee-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.admin-employee-card-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.admin-employee-role {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(93, 132, 170, 0.12);
    border: 1px solid rgba(93, 132, 170, 0.18);
    color: var(--accent-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.admin-employee-role.is-overall {
    background: rgba(83, 121, 177, 0.14);
    border-color: rgba(83, 121, 177, 0.24);
    color: #375585;
}

.admin-employee-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.admin-employee-status.is-active {
    background: rgba(100, 170, 122, 0.14);
    border: 1px solid rgba(100, 170, 122, 0.24);
    color: #2f6a43;
}

.admin-employee-status.is-inactive {
    background: rgba(120, 126, 138, 0.12);
    border: 1px solid rgba(120, 126, 138, 0.18);
    color: #5d6570;
}

.admin-employee-card h3 {
    margin-bottom: 1rem;
}

.admin-employee-card-body {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.admin-employee-detail {
    display: grid;
    gap: 0.35rem;
    min-width: 0;
}

.admin-employee-detail-label {
    color: var(--accent-ink);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-employee-detail-value {
    margin-top: 0;
    color: var(--text);
}

.admin-employee-performance {
    display: grid;
    gap: 0.35rem;
    margin-top: 1.15rem;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(236, 248, 240, 0.98), rgba(227, 244, 233, 0.96));
    border: 1px solid rgba(100, 170, 122, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.admin-employee-performance-label {
    color: #2f6a43;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-employee-performance strong {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 0.95;
    color: #2f6a43;
}

.admin-employee-actions-panel {
    display: grid;
    align-content: start;
    gap: 0.75rem;
    padding: 1.15rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(248, 251, 254, 0.98), rgba(240, 246, 251, 0.96));
    border: 1px solid rgba(84, 107, 129, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.admin-employee-actions-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.admin-employee-actions-copy {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.6;
}

.admin-employee-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    align-items: stretch;
}

.admin-employee-action-form {
    margin: 0;
    width: 100%;
}

.admin-employee-action {
    width: 100%;
    justify-content: center;
    min-height: 42px;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    font-size: 0.98rem;
}

.admin-employee-action.is-warning {
    background: rgba(210, 177, 72, 0.14);
    border-color: rgba(210, 177, 72, 0.24);
    color: #8f6404;
    box-shadow: 0 10px 20px rgba(210, 177, 72, 0.12);
}

.admin-employee-action.is-warning:hover,
.admin-employee-action.is-warning:focus-visible {
    background: rgba(210, 177, 72, 0.2);
    border-color: rgba(210, 177, 72, 0.32);
}

.admin-employee-action.is-success {
    background: rgba(100, 170, 122, 0.14);
    border-color: rgba(100, 170, 122, 0.24);
    color: #2f6a43;
    box-shadow: 0 10px 20px rgba(100, 170, 122, 0.12);
}

.admin-employee-action.is-success:hover,
.admin-employee-action.is-success:focus-visible {
    background: rgba(100, 170, 122, 0.2);
    border-color: rgba(100, 170, 122, 0.32);
}

.admin-employee-action.is-danger {
    background: rgba(198, 80, 68, 0.14);
    border-color: rgba(198, 80, 68, 0.24);
    color: #a22e24;
    box-shadow: 0 10px 20px rgba(198, 80, 68, 0.12);
}

.admin-employee-action.is-danger:hover,
.admin-employee-action.is-danger:focus-visible {
    background: rgba(198, 80, 68, 0.2);
    border-color: rgba(198, 80, 68, 0.32);
}

.admin-employee-action.is-primary-action {
    box-shadow: 0 12px 24px rgba(94, 126, 151, 0.1);
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.85rem;
}

.admin-view-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.15rem;
}

.admin-view-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 48px;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(84, 107, 129, 0.14);
    color: var(--accent-ink);
    font-weight: 700;
    box-shadow: 0 10px 18px rgba(34, 53, 71, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.admin-view-link:hover,
.admin-view-link:focus-visible,
.admin-view-link.is-active {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(49, 72, 93, 0.12);
}

.admin-view-link strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    background: rgba(93, 132, 170, 0.12);
    color: inherit;
}

.admin-view-link.is-active {
    background: linear-gradient(180deg, rgba(78, 107, 131, 0.96), rgba(49, 72, 93, 0.98));
    border-color: rgba(49, 72, 93, 0.72);
    color: #ffffff;
}

.admin-view-link.is-active strong {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.admin-view-link-completed {
    background: rgba(236, 248, 240, 0.92);
    border-color: rgba(100, 170, 122, 0.24);
    color: #2f6a43;
}

.admin-view-link-completed strong {
    background: rgba(100, 170, 122, 0.14);
}

.admin-view-link-completed.is-active {
    background: linear-gradient(180deg, rgba(76, 133, 95, 0.96), rgba(47, 106, 67, 0.98));
    border-color: rgba(47, 106, 67, 0.72);
}

.admin-stat-card {
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

.admin-stat-card::after {
    content: '';
    position: absolute;
    inset: auto -8% -18% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 205, 225, 0.28), transparent 65%);
    pointer-events: none;
}

.admin-stat-card.is-total {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 249, 252, 0.98));
}

.admin-stat-card.is-yet-to-take {
    background: linear-gradient(180deg, rgba(255, 249, 232, 0.96), rgba(255, 245, 214, 0.98));
    border-color: rgba(210, 177, 72, 0.22);
}

.admin-stat-card.is-on-progress {
    background: linear-gradient(180deg, rgba(255, 238, 235, 0.96), rgba(255, 229, 225, 0.98));
    border-color: rgba(198, 80, 68, 0.22);
}

.admin-stat-card.is-completed {
    background: linear-gradient(180deg, rgba(236, 248, 240, 0.96), rgba(227, 244, 233, 0.98));
    border-color: rgba(100, 170, 122, 0.22);
}

.admin-stat-card.is-yet-to-take::after {
    background: radial-gradient(circle, rgba(210, 177, 72, 0.22), transparent 65%);
}

.admin-stat-card.is-on-progress::after {
    background: radial-gradient(circle, rgba(198, 80, 68, 0.2), transparent 65%);
}

.admin-stat-card.is-completed::after {
    background: radial-gradient(circle, rgba(100, 170, 122, 0.2), transparent 65%);
}

.admin-stat-card > * {
    position: relative;
    z-index: 1;
}

.admin-stat-label {
    display: inline-flex;
    margin-bottom: 0.8rem;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    background: rgba(93, 132, 170, 0.12);
    color: var(--accent-ink);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-stat-card.is-yet-to-take .admin-stat-label {
    background: rgba(210, 177, 72, 0.16);
    color: #8f6404;
}

.admin-stat-card.is-on-progress .admin-stat-label {
    background: rgba(198, 80, 68, 0.14);
    color: #a22e24;
}

.admin-stat-card.is-completed .admin-stat-label {
    background: rgba(100, 170, 122, 0.14);
    color: #2f6a43;
}

.admin-stat-card strong {
    font-size: clamp(2.25rem, 4vw, 3.15rem);
    line-height: 0.98;
}

.admin-stat-card span:not(.admin-stat-label) {
    display: block;
    margin-top: 0.2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.admin-stat-card p {
    margin-top: 0.65rem;
    max-width: 28ch;
}

.admin-stat-card.is-yet-to-take strong,
.admin-stat-card.is-yet-to-take span:not(.admin-stat-label) {
    color: #8f6404;
}

.admin-stat-card.is-on-progress strong,
.admin-stat-card.is-on-progress span:not(.admin-stat-label) {
    color: #a22e24;
}

.admin-stat-card.is-completed strong,
.admin-stat-card.is-completed span:not(.admin-stat-label) {
    color: #2f6a43;
}

.admin-stat-card.is-yet-to-take p {
    color: #8f6404;
}

.admin-stat-card.is-on-progress p {
    color: #a22e24;
}

.admin-stat-card.is-completed p {
    color: #2f6a43;
}

.admin-toolbar {
    margin-top: 2rem;
    padding: 1.6rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 249, 252, 0.98));
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: 0 22px 44px rgba(34, 53, 71, 0.08);
}

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

.admin-toolbar-head {
    margin-bottom: 1.2rem;
}

.admin-toolbar-head .eyebrow,
.admin-results-head .eyebrow {
    margin-bottom: 0.8rem;
}

.admin-toolbar-head h2,
.admin-results-head h2 {
    font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.admin-toolbar-head p,
.admin-results-summary {
    max-width: 42ch;
    text-align: right;
}

.admin-filter-form {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1.2fr) auto;
    gap: 1rem;
    align-items: end;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.admin-filter-field {
    display: grid;
    gap: 0.55rem;
}

.admin-filter-field span {
    color: var(--accent-ink);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.admin-filter-form input,
.admin-filter-form select {
    min-height: 56px;
    background: rgba(250, 252, 254, 0.96);
    border-color: rgba(84, 107, 129, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.admin-filter-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.admin-filter-actions .button {
    min-height: 56px;
    padding-inline: 1.3rem;
}

.admin-results-shell {
    margin-top: 1.65rem;
}

.admin-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.1rem;
    margin-bottom: 1.25rem;
}

.admin-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 44px;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(84, 107, 129, 0.14);
    color: var(--accent-ink);
    font-weight: 700;
    box-shadow: 0 10px 18px rgba(34, 53, 71, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.admin-chip:hover,
.admin-chip:focus-visible,
.admin-chip.is-active {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(49, 72, 93, 0.12);
}

.admin-chip.is-active {
    background: linear-gradient(180deg, rgba(78, 107, 131, 0.96), rgba(49, 72, 93, 0.98));
    border-color: rgba(49, 72, 93, 0.72);
    color: #ffffff;
}

.admin-chip strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    background: rgba(93, 132, 170, 0.12);
    color: var(--accent-ink);
}

.admin-chip.is-active strong {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.admin-table-wrap {
    margin-top: 0;
    overflow: auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), var(--panel-end));
    border: 1px solid rgba(84, 107, 129, 0.14);
    border-radius: 34px;
    box-shadow: 0 28px 56px rgba(34, 53, 71, 0.09);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1440px;
    table-layout: fixed;
}

.admin-table.is-completed-view {
    min-width: 1680px;
}

.admin-table th,
.admin-table td {
    padding: 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(84, 107, 129, 0.1);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    font-family: 'Outfit', sans-serif;
    position: sticky;
    top: 0;
    z-index: 1;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #556d85;
    background: linear-gradient(180deg, rgba(237, 244, 249, 0.98), rgba(246, 250, 253, 0.98));
    backdrop-filter: blur(12px);
}

.admin-table th:nth-child(2),
.admin-table td:nth-child(2) {
    width: 164px;
}

.admin-table th:nth-child(3),
.admin-table td:nth-child(3) {
    width: 180px;
}

.admin-table th:nth-child(4),
.admin-table td:nth-child(4) {
    width: 300px;
}

.admin-table th:nth-child(5),
.admin-table td:nth-child(5) {
    width: 250px;
}

.admin-table th:nth-child(6),
.admin-table td:nth-child(6) {
    width: 220px;
}

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

.admin-table tbody tr:nth-child(even) {
    background: rgba(249, 251, 253, 0.72);
}

.admin-table tbody tr:hover {
    background: rgba(233, 241, 248, 0.88);
}

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

.admin-table strong {
    display: block;
    margin-bottom: 0;
    line-height: 1.4;
}

.admin-col-no {
    width: 76px;
    white-space: nowrap;
}

.admin-col-message {
    width: 350px;
}

.admin-col-completed-by {
    width: 250px;
}

.admin-table-number,
.admin-table-date {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--accent-ink);
    white-space: nowrap;
}

.admin-table-meta {
    display: block;
    margin-top: 0.3rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.admin-inline-link {
    display: inline-block;
    color: var(--accent-3);
    font-weight: 700;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.admin-service-badge {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    max-width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 22px;
    background: rgba(93, 132, 170, 0.12);
    border: 1px solid rgba(93, 132, 170, 0.18);
    color: var(--accent-ink);
    font-weight: 800;
    line-height: 1.4;
    white-space: normal;
}

.admin-status-form {
    margin: 0;
}

.admin-status-cell {
    display: grid;
    justify-items: start;
    gap: 0.45rem;
}

.admin-status-cell .admin-table-meta {
    margin-top: 0;
}

.admin-status-select {
    width: min(100%, 210px);
    min-height: 44px;
    padding: 0.45rem 2.25rem 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 5.25L7 9.25L11 5.25' stroke='%23556d85' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: right 0.85rem center;
    background-repeat: no-repeat;
    background-size: 0.95rem;
    transition: box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.admin-status-select:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(93, 132, 170, 0.18);
}

.admin-status-select.is-yet-to-take {
    background-color: rgba(210, 177, 72, 0.16);
    border-color: rgba(210, 177, 72, 0.26);
    color: #8f6404;
}

.admin-status-select.is-on-progress {
    background-color: rgba(198, 80, 68, 0.14);
    border-color: rgba(198, 80, 68, 0.24);
    color: #a22e24;
}

.admin-status-select.is-completed {
    background-color: rgba(100, 170, 122, 0.14);
    border-color: rgba(100, 170, 122, 0.24);
    color: #2f6a43;
}

.admin-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 210px);
    min-height: 44px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
}

.admin-status-badge.is-completed {
    background-color: rgba(100, 170, 122, 0.14);
    border-color: rgba(100, 170, 122, 0.24);
    color: #2f6a43;
}

.admin-status-meta {
    white-space: normal;
}

.admin-message-cell {
    min-width: 0;
    max-width: none;
    min-height: 84px;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(251, 253, 255, 0.98), rgba(244, 248, 252, 0.94));
    border: 1px solid rgba(84, 107, 129, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 10px 22px rgba(34, 53, 71, 0.04);
    line-height: 1.72;
    color: var(--text);
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.admin-alert,
.admin-empty-state {
    margin-top: 1.5rem;
}

.admin-empty-state {
    padding: 2.2rem;
    border-radius: 30px;
}

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

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

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

.metric-card strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.1rem;
    margin-bottom: 0.45rem;
}

.story-card h3,
.detail-card h3,
.contact-quick-card h3,
.faq-card h3 {
    margin-bottom: 0.7rem;
}

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

.contact-quick-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.95rem;
    min-height: 100%;
}

.contact-quick-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    max-width: 24ch;
}

.contact-quick-card .button {
    margin-top: auto;
    min-width: 170px;
}

.map-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: stretch;
}

.map-card {
    padding: 0;
    overflow: hidden;
}

.map-frame {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.map-note {
    display: grid;
    align-content: center;
    gap: 1rem;
}

.map-note h3 {
    margin-bottom: 0;
}

.contact-quick-card a:not(.button),
.text-link {
    color: var(--accent-3);
    font-weight: 700;
}

.notice-copy {
    margin-top: 1rem;
}

.is-hidden {
    display: none;
}

@media (max-width: 1480px) {
    .admin-page {
        --container: 100%;
    }

    .admin-table {
        min-width: 1320px;
    }

    .admin-table.is-completed-view {
        min-width: 1540px;
    }

    .admin-table th:nth-child(4),
    .admin-table td:nth-child(4) {
        width: 270px;
    }

    .admin-table th:nth-child(5),
    .admin-table td:nth-child(5) {
        width: 220px;
    }

    .admin-table th:nth-child(6),
    .admin-table td:nth-child(6) {
        width: 200px;
    }

    .admin-col-message {
        width: 320px;
    }
}

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

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

    .admin-employee-card-layout,
    .admin-employee-card-body {
        grid-template-columns: 1fr;
    }

    .admin-toolbar-head,
    .admin-results-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-toolbar-head p,
    .admin-results-summary {
        max-width: none;
        text-align: left;
    }

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

    .admin-filter-actions {
        flex-wrap: wrap;
    }

    .admin-col-message {
        width: 300px;
    }

    .admin-message-cell {
        min-width: 280px;
        max-width: none;
        min-height: 72px;
    }

    .process-grid {
        margin-top: 2rem;
        padding: 0;
    }

    .process-grid::before,
    .process-grid::after,
    .process-card::after {
        display: none;
    }

    .process-card,
    .process-card:nth-child(odd),
    .process-card:nth-child(even) {
        min-height: auto;
        margin: 0;
    }

    .process-card p {
        max-width: none;
    }

    .process-card .step-number {
        position: static;
        width: auto;
        min-width: 72px;
        height: auto;
        padding: 0.5rem 0.85rem;
        margin-bottom: 1rem;
        transform: none;
        border: 0;
        border-radius: 999px;
        background: rgba(141, 183, 207, 0.22);
        box-shadow: none;
        font-size: 1rem;
        letter-spacing: 0;
    }

    .hero-layout,
    .split-layout,
    .contact-layout,
    .service-grid,
    .process-grid,
    .pricing-grid,
    .resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-grid article:last-child,
    .resource-grid article:last-child {
        grid-column: span 2;
    }

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

    .feature-grid,
    .metric-strip,
    .contact-quick-grid,
    .map-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-grid > :first-child {
        grid-column: span 2;
    }
}

@media (max-width: 820px) {
    .admin-header-inner,
    .admin-header-actions {
        align-items: stretch;
    }

    .admin-header-inner {
        gap: 0.75rem;
    }

    .admin-header-actions {
        flex-direction: column;
    }

    .admin-modal-card {
        padding: 1.5rem;
    }

    .admin-auth-section {
        min-height: auto;
    }

    .hero::before,
    .hero::after,
    .hero-layout::before {
        opacity: 0.18;
        transform: none;
    }

    .hero::before {
        width: 220px;
        height: 150px;
        top: 1.5rem;
        right: -2rem;
    }

    .hero::after {
        display: none;
    }

    .hero-layout::before {
        width: 180px;
        height: 120px;
        top: 1rem;
        left: auto;
        right: 16%;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: 22px;
        background: var(--surface-strong);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: flex;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .header-inner {
        position: relative;
    }

    .hero-layout,
    .split-layout,
    .contact-layout,
    .trust-grid,
    .service-grid,
    .advantage-list,
    .process-grid,
    .solution-grid,
    .pricing-grid,
    .resource-grid,
    .footer-grid,
    .field-grid,
    .page-hero-layout,
    .feature-grid,
    .detail-grid,
    .metric-strip,
    .story-grid,
    .map-layout,
    .contact-quick-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .catalog-header {
        grid-template-columns: 1fr;
    }

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

    .catalog-nav {
        gap: 0.65rem;
    }

    .service-grid article:last-child,
    .resource-grid article:last-child,
    .footer-grid > :first-child {
        grid-column: auto;
    }

    .hero-visual {
        min-height: 480px;
    }

    .visual-main {
        inset: 8% 5% auto 0;
    }

    .visual-side {
        width: 52%;
        right: 0;
    }

    .visual-stat {
        width: 60%;
        left: 5%;
    }

    .cta-shell {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    main {
        padding-top: 76px;
    }

    .section {
        padding: 4.5rem 0;
    }

    .header-inner {
        min-height: 76px;
    }

    .hero {
        padding-top: 3rem;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .button,
    .nav-cta {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-visual {
        min-height: 420px;
    }

    .brand-logo {
        width: min(180px, 46vw);
    }

    .footer-brand .brand-logo {
        width: min(170px, 48vw);
    }

    .visual-main,
    .visual-side,
    .visual-stat {
        position: relative;
        inset: auto;
        width: 100%;
        transform: none;
        margin-bottom: 1rem;
    }

    .orbit {
        display: none;
    }

    .contact-card {
        padding: 1.4rem;
    }

    .support-chat-widget {
        right: 0.75rem;
        left: 0.75rem;
        bottom: 0.75rem;
        align-items: stretch;
    }

    .support-chat-trigger {
        width: auto;
        align-self: flex-end;
    }

    .support-chat-panel {
        width: 100%;
    }

    .admin-toolbar,
    .admin-table-wrap,
    .admin-empty-state,
    .admin-auth-card {
        border-radius: 24px;
    }

    .admin-stat-card,
    .admin-toolbar,
    .admin-auth-card {
        padding: 1.4rem;
    }

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

    .admin-employee-card {
        padding: 1.25rem;
    }

    .admin-employee-card-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-employee-card-badges {
        width: 100%;
    }

    .admin-employee-actions-panel {
        padding: 1rem;
    }
}
