:root {
    --font-sans: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    --color-bg: #f7f3ff;
    --color-surface: #ffffff;
    --color-surface-strong: #0b0b0f;
    --color-text: #1d1726;
    --color-muted: #6d6478;
    --color-line: #e6daf7;
    --color-primary: #8012FF;
    --color-primary-dark: #4b0a99;
    --color-accent: #a855f7;
    --color-warning: #c084fc;
    --radius-base: 3px;
    --shadow-soft: 0 18px 50px rgba(58, 8, 122, 0.12);
    --shadow-card: 0 12px 30px rgba(58, 8, 122, 0.09);
    --transition-base: 180ms ease;
}

* {
    border-radius: var(--radius-base);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    letter-spacing: 0;
}

a {
    text-decoration: none;
}

::selection {
    background: var(--color-primary);
    color: #ffffff;
}

.btn,
.card,
.navbar-toggler,
.form-control,
.progress,
.progress-bar {
    border-radius: var(--radius-base);
}

.btn {
    font-weight: 700;
    letter-spacing: 0;
    padding: 0.78rem 1.05rem;
}

.btn-primary {
    --bs-btn-bg: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-hover-bg: var(--color-primary-dark);
    --bs-btn-hover-border-color: var(--color-primary-dark);
}

.btn-outline-light {
    --bs-btn-color: #ffffff;
    --bs-btn-border-color: rgba(255, 255, 255, 0.55);
    --bs-btn-hover-color: var(--color-surface-strong);
    --bs-btn-hover-bg: #ffffff;
    --bs-btn-hover-border-color: #ffffff;
}

.floating-actions {
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: fixed;
    z-index: 1050;
}

.floating-actions-left {
    left: 24px;
}

.floating-actions-right {
    right: 24px;
}

.floating-wa,
.floating-top {
    align-items: center;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
    display: inline-flex;
    font-size: 1.05rem;
    height: 56px;
    justify-content: center;
    width: 56px;
}

.floating-wa {
    animation: whatsappPulse 1.6s infinite;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
}

.floating-wa:hover,
.floating-wa:focus {
    color: #ffffff;
    transform: translateY(-2px);
}

.floating-top {
    background: rgba(11, 11, 15, 0.92);
    color: #ffffff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 220ms ease, transform 220ms ease, background 220ms ease;
}

.floating-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-top:hover,
.floating-top:focus {
    background: var(--color-primary);
    color: #ffffff;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 18px 36px rgba(37, 211, 102, 0.38); }
    50% { transform: scale(1.06); box-shadow: 0 24px 42px rgba(18, 140, 126, 0.48); }
}

.hero-section {
    background:
        linear-gradient(135deg, rgba(11, 11, 15, 0.96), rgba(128, 18, 255, 0.82)),
        radial-gradient(circle at 78% 14%, rgba(168, 85, 247, 0.42), transparent 32%),
        var(--color-surface-strong);
    color: #ffffff;
    min-height: 100vh;
    overflow: hidden;
    padding: 156px 0 72px;
}

.hero-section .container {
    position: relative;
}

.eyebrow {
    color: var(--color-accent);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.hero-copy {
    color: rgba(255, 255, 255, 0.78);
    margin: 1.35rem 0 2rem;
    max-width: 620px;
}

.hero-console {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
    padding: 1rem;
}

.console-header {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 0.45rem;
    padding: 0.75rem;
}

.console-header span {
    background: rgba(255, 255, 255, 0.55);
    display: block;
    height: 9px;
    width: 9px;
}

.console-header span:nth-child(1) {
    background: #ff6961;
}

.console-header span:nth-child(2) {
    background: var(--color-warning);
}

.console-header span:nth-child(3) {
    background: var(--color-accent);
}

.console-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
    padding-top: 1rem;
}

.metric-panel,
.code-panel {
    background: rgba(11, 11, 15, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.1rem;
}

.metric-panel small,
.code-panel span {
    color: rgba(255, 255, 255, 0.62);
    display: block;
    font-family: var(--font-mono);
    font-size: 0.78rem;
}

.metric-panel strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1;
    margin: 0.9rem 0;
}

.progress {
    background: rgba(255, 255, 255, 0.16);
    height: 7px;
}

.progress-bar {
    background: var(--color-accent);
}

.status-row {
    align-items: center;
    color: #ffffff;
    display: flex;
    font-weight: 700;
    gap: 0.5rem;
}

.status-dot {
    animation: pulse 1.8s ease-in-out infinite;
    background: var(--color-accent);
    display: inline-block;
    height: 10px;
    width: 10px;
}

.code-panel {
    grid-column: span 2;
}

.code-panel span {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.55rem 0;
}

.code-panel span:last-child {
    border-bottom: 0;
}

.hero-stats {
    margin-top: 5rem;
}

.hero-stats > div {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.2rem;
}

.hero-stats strong {
    display: block;
    font-size: clamp(1.75rem, 3vw, 2.7rem);
    line-height: 1;
}

.hero-stats span {
    color: rgba(255, 255, 255, 0.68);
    display: block;
    margin-top: 0.5rem;
}

.section-pad {
    padding: 96px 0;
}

.section-heading {
    margin: 0 auto 3rem;
    max-width: 720px;
    text-align: center;
}

.section-heading h2,
.contact-panel h2 {
    color: var(--color-surface-strong);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1rem;
}

.section-heading p:not(.eyebrow),
.section-note {
    color: var(--color-muted);
    font-size: 1.05rem;
}

.service-card,
.process-card,
.feature-block,
.stack-board {
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-card);
    padding: 1.45rem;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.service-card:hover,
.process-card:hover {
    border-color: rgba(128, 18, 255, 0.35);
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
}

.service-icon,
.process-card span {
    color: var(--color-primary);
    display: inline-block;
    font-family: var(--font-mono);
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.service-card h3,
.process-card h3,
.feature-block h3 {
    color: var(--color-surface-strong);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.service-card p,
.process-card p,
.feature-block p {
    color: var(--color-muted);
    margin-bottom: 0;
}

.work-section {
    background: #f4edff;
}

.feature-block {
    background: var(--color-surface-strong);
    color: #ffffff;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.feature-block h3 {
    color: #ffffff;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.feature-block p,
.feature-block span {
    color: rgba(255, 255, 255, 0.72);
}

.feature-block strong {
    color: #ffffff;
    display: block;
    font-size: 2rem;
}

.stack-board {
    align-content: start;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stack-board span,
.tech-list span {
    background: #ffffff;
    border: 1px solid var(--color-line);
    color: var(--color-text);
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    padding: 0.9rem 1rem;
}

.tech-section {
    background: #ffffff;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.contact-section {
    background: var(--color-surface-strong);
    padding: 84px 0;
}

.contact-panel {
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.contact-panel .eyebrow,
.contact-panel h2,
.contact-panel p {
    color: #ffffff;
}

.contact-panel p {
    margin-bottom: 0;
    max-width: 680px;
}

.site-footer {
    background:
        linear-gradient(135deg, #08080b 0%, #120b1d 45%, #0b0614 100%);
    border-top: 1px solid rgba(128, 18, 255, 0.18);
    box-shadow: 0 -18px 34px rgba(0, 0, 0, 0.28);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    padding: 3rem 0 1.4rem;
    position: relative;
}

.site-footer .eyebrow {
    color: #c9a4ff;
    margin-bottom: 0.5rem;
}

.site-footer a,
.site-footer span {
    color: rgba(255, 255, 255, 0.72);
    display: block;
    margin-top: 0.35rem;
    text-decoration: none;
}

.site-footer strong {
    color: #ffffff;
    display: block;
}

.footer-top {
    align-items: end;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1.6rem;
    padding-bottom: 1.3rem;
}

.footer-top h5 {
    color: #ffffff;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    font-weight: 800;
    line-height: 1.2;
    max-width: 520px;
}

.footer-intro {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    max-width: 520px;
}

.footer-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 1.6rem;
}

.footer-column h5 {
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
}

.footer-column p,
.footer-column li,
.footer-column span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.5;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.45rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.72);
    transition: color 220ms ease, transform 220ms ease;
}

.footer-column a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.footer-contact-list i,
.social-links i {
    color: #c9a4ff;
    margin-right: 0.45rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.social-links a {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    margin-top: 0;
    width: 38px;
}

.social-links a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0.35rem 0;
}

@media (max-width: 767.98px) {
    .footer-top {
        align-items: flex-start;
        flex-direction: column;
    }
}

.page-hero {
    background: linear-gradient(135deg, rgba(11, 11, 15, 0.98), rgba(128, 18, 255, 0.84));
    color: #ffffff;
    padding: 166px 0 86px;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    font-weight: 800;
    line-height: 1.04;
    max-width: 880px;
}

.page-hero .lead {
    color: rgba(255, 255, 255, 0.76);
    max-width: 720px;
}

.content-form,
.admin-panel,
.admin-stat {
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-card);
    padding: 1.5rem;
}

.form-control,
.form-select {
    border-color: var(--color-line);
    min-height: 46px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(128, 18, 255, 0.12);
}

.admin-body {
    background: #f4edff;
}

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

.admin-sidebar {
    background: #08080b;
    color: #ffffff;
    padding: 1.25rem;
    position: sticky;
    top: 0;
    height: 100vh;
}

.admin-brand {
    align-items: center;
    color: #ffffff;
    display: flex;
    font-weight: 800;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

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

.admin-nav a {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
    padding: 0.85rem 0.9rem;
}

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

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

.admin-topbar {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--color-line);
    display: flex;
    justify-content: space-between;
    min-height: 94px;
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 5;
}

.admin-topbar h1 {
    color: var(--color-surface-strong);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    margin: 0;
}

.admin-content {
    padding: 2rem;
}

.admin-panel h2 {
    color: var(--color-surface-strong);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.admin-stat span {
    color: var(--color-muted);
    display: block;
    font-weight: 700;
}

.admin-stat strong {
    color: var(--color-surface-strong);
    display: block;
    font-size: 2.6rem;
    line-height: 1;
    margin-top: 0.9rem;
}

.table {
    --bs-table-bg: transparent;
}

.table th {
    color: var(--color-muted);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.message-box {
    background: #fbf8ff;
    border: 1px solid var(--color-line);
    color: var(--color-text);
    line-height: 1.7;
    min-height: 180px;
    padding: 1.25rem;
    white-space: pre-wrap;
}

    .preloader {
        position: fixed;
        inset: 0;
        z-index: 1100;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #08080b;
        color: #ffffff;
        transition: opacity 400ms ease, visibility 400ms ease;
    }

    .preloader.loaded {
        opacity: 0;
        visibility: hidden;
    }

    .preloader-inner {
        text-align: center;
    }

    .spinner {
        width: 48px;
        height: 48px;
        margin: 0 auto 1rem;
        border: 5px solid rgba(255, 255, 255, 0.16);
        border-top-color: var(--color-accent);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .hero-section {
        background:
            linear-gradient(135deg, rgba(11, 11, 15, 0.96), rgba(128, 18, 255, 0.86)),
            radial-gradient(circle at 88% 14%, rgba(168, 85, 247, 0.32), transparent 30%),
            radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.12), transparent 30%);
        color: #ffffff;
        min-height: calc(100vh - 60px);
        padding: 156px 0 72px;
        overflow: hidden;
        position: relative;
    }

    .marketing-hero {
        background:
            linear-gradient(90deg, rgba(18, 20, 26, 0.94) 0%, rgba(18, 20, 26, 0.82) 42%, rgba(32, 42, 50, 0.78) 100%),
            radial-gradient(circle at 76% 36%, rgba(128, 18, 255, 0.36), transparent 18%),
            linear-gradient(135deg, #202529, #1d2e36 56%, #14242b);
        min-height: calc(100vh - 20px);
        padding: 190px 0 96px;
    }

    .marketing-hero .container {
        position: relative;
        z-index: 4;
    }

    .marketing-hero .hero-bg-shapes {
        background-image:
            linear-gradient(110deg, rgba(255, 255, 255, 0.04), transparent 38%),
            radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.08), transparent 28%);
        opacity: 1;
    }

    .hero-kicker {
        color: rgba(255, 255, 255, 0.92);
        font-family: var(--font-mono);
        font-size: 0.88rem;
        font-weight: 800;
        letter-spacing: 0.34em;
        margin-bottom: 1.2rem;
        text-transform: uppercase;
    }

    .marketing-hero .hero-title {
        color: #ffffff;
        font-size: clamp(2.45rem, 5vw, 4.3rem);
        letter-spacing: 0;
        line-height: 1.04;
        margin-bottom: 1.5rem;
        max-width: 780px;
        text-transform: uppercase;
    }

    .marketing-hero .hero-copy {
        color: rgba(255, 255, 255, 0.88);
        font-size: clamp(1rem, 1.35vw, 1.2rem);
        line-height: 1.8;
        max-width: 760px;
    }

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

    .hero-btn {
        border-radius: 999px;
        font-size: 0.92rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        min-width: 170px;
        padding: 0.95rem 1.6rem;
        text-align: center;
        text-transform: uppercase;
    }

    .hero-btn-light {
        background: #ffffff;
        border-color: #ffffff;
        color: #23304a;
    }

    .hero-btn-light:hover,
    .hero-btn-light:focus {
        background: rgba(255, 255, 255, 0.9);
        color: #8012FF;
    }

    .hero-btn-primary {
        background: #8012FF;
        border-color: #8012FF;
        color: #ffffff;
        box-shadow: 0 18px 35px rgba(128, 18, 255, 0.28);
    }

    .hero-btn-primary:hover,
    .hero-btn-primary:focus {
        background: #4b0a99;
        border-color: #4b0a99;
        color: #ffffff;
    }

    .hero-device {
        bottom: 10%;
        height: min(42vw, 520px);
        opacity: 0.9;
        pointer-events: none;
        position: absolute;
        right: 5%;
        width: min(48vw, 720px);
        z-index: 2;
    }

    .hero-device::before,
    .hero-device::after {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.06));
        border: 1px solid rgba(255, 255, 255, 0.18);
        content: "";
        filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.28));
        position: absolute;
        transform: rotate(-18deg) skewX(-8deg);
    }

    .hero-device::before {
        bottom: 5%;
        height: 52%;
        left: 12%;
        width: 32%;
    }

    .hero-device::after {
        height: 22%;
        right: 4%;
        top: 4%;
        width: 42%;
    }

    .device-screen {
        inset: 0;
        position: absolute;
    }

    .social-bubble {
        align-items: center;
        animation: float 6s ease-in-out infinite;
        background: rgba(128, 18, 255, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 999px;
        box-shadow: 0 18px 42px rgba(128, 18, 255, 0.28);
        color: #ffffff;
        display: inline-flex;
        font-weight: 900;
        justify-content: center;
        min-height: 54px;
        min-width: 54px;
        padding: 0.8rem;
        position: absolute;
    }

    .bubble-heart {
        font-size: 1rem;
        height: 102px;
        right: 30%;
        top: 12%;
        width: 102px;
    }

    .bubble-star {
        left: 42%;
        top: 26%;
    }

    .bubble-comment {
        bottom: 32%;
        left: 50%;
    }

    .bubble-share {
        right: 20%;
        top: 38%;
    }

    .hero-social-rail {
        display: grid;
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 6;
    }

    .hero-social-rail a {
        align-items: center;
        color: #ffffff;
        display: inline-flex;
        font-family: var(--font-mono);
        font-size: 0.84rem;
        font-weight: 900;
        height: 47px;
        justify-content: center;
        text-transform: uppercase;
        width: 47px;
    }

    .rail-facebook,
    .rail-linkedin {
        background: #3657b8;
    }

    .rail-twitter {
        background: #229af2;
    }

    .rail-youtube {
        background: #ef3f32;
    }

    .rail-instagram {
        background: #f45a22;
    }

    .hero-slider-arrows {
        bottom: 28%;
        color: #ffffff;
        display: flex;
        gap: 4.5rem;
        position: absolute;
        right: 5%;
        z-index: 5;
    }

    .hero-slider-arrows span {
        align-items: center;
        border: 3px solid rgba(255, 255, 255, 0.9);
        border-left: 0;
        border-top: 0;
        display: inline-flex;
        font-size: 0;
        height: 26px;
        justify-content: center;
        transform: rotate(135deg);
        width: 26px;
    }

    .hero-slider-arrows span:last-child {
        transform: rotate(-45deg);
    }

    .hero-call-float {
        align-items: center;
        background: #ffffff;
        border: 4px solid rgba(128, 18, 255, 0.48);
        border-radius: 999px;
        bottom: 28px;
        box-shadow: 0 14px 32px rgba(128, 18, 255, 0.24);
        color: #8012FF;
        display: inline-flex;
        font-size: 0.78rem;
        font-weight: 900;
        height: 76px;
        justify-content: center;
        left: 28px;
        position: absolute;
        text-transform: uppercase;
        width: 76px;
        z-index: 6;
    }

    .hero-bg-shapes {
        position: absolute;
        inset: 0;
        opacity: 0.3;
        background-image:
            radial-gradient(circle at 30% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(128, 18, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 60% 80%, rgba(192, 132, 252, 0.12) 0%, transparent 50%);
        z-index: 1;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(168, 85, 247, 0.4);
        padding: 0.6rem 1.2rem;
        border-radius: 50px;
        width: fit-content;
    }

    .badge-dot {
        display: inline-block;
        width: 8px;
        height: 8px;
        background: var(--color-accent);
        border-radius: 50%;
        animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {
        0%, 100% {
            opacity: 1;
        }
        50% {
            opacity: 0.5;
        }
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 5rem);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .gradient-text {
        background: linear-gradient(120deg, #a855f7, #c084fc, #c084fc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;
    }

    .hero-copy {
        font-size: 1.1rem;
        max-width: 580px;
        color: rgba(255, 255, 255, 0.88);
        line-height: 1.8;
    }

    .btn-arrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .arrow {
        transition: transform 300ms ease;
        display: inline-block;
    }

    .btn-arrow:hover .arrow {
        transform: translateX(4px);
    }

    .hero-stats-floating {
        position: relative;
        height: 500px;
    }

    .stat-card {
        position: absolute;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 1rem;
        color: #ffffff;
        animation: float 6s ease-in-out infinite;
    }

    .stat-card-1 {
        top: 20px;
        right: 0;
        animation-delay: 0s;
    }

    .stat-card-2 {
        top: 200px;
        right: 40px;
        animation-delay: 1s;
    }

    .stat-card-3 {
        bottom: 20px;
        right: 120px;
        animation-delay: 2s;
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-20px);
        }
    }

    .stat-icon {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.8rem;
        font-weight: 800;
    }

    .stat-number sup {
        font-size: 0.8em;
        color: var(--color-accent);
    }

    .stat-label {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.7);
        margin-top: 0.25rem;
    }

    .hero-circle-icon {
        position: absolute;
        width: 200px;
        height: 200px;
        border: 2px solid rgba(168, 85, 247, 0.2);
        border-radius: 50%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
        from {
            transform: translate(-50%, -50%) rotate(0deg);
        }
        to {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }

    .min-vh-75 {
        min-height: 75vh;
    }

    .z-3 {
        position: relative;
        z-index: 3;
    }

    .about-features {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .feature-item {
        display: flex;
        gap: 1rem;
    }

    .feature-icon {
        font-size: 2rem;
        flex-shrink: 0;
    }

    .feature-item h4 {
        margin-bottom: 0.5rem;
        color: var(--color-surface-strong);
        font-weight: 700;
    }

    .feature-item p {
        color: var(--color-muted);
        margin: 0;
        font-size: 0.95rem;
    }

    .about-stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-stat-box {
        background: linear-gradient(135deg, rgba(128, 18, 255, 0.08), rgba(168, 85, 247, 0.08));
        border: 1px solid rgba(128, 18, 255, 0.15);
        padding: 2rem;
        border-radius: 12px;
        text-align: center;
    }

    .stat-badge {
        display: inline-block;
        background: linear-gradient(120deg, var(--color-primary), var(--color-accent));
        color: white;
        font-size: 2.5rem;
        font-weight: 800;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        margin-bottom: 1rem;
    }

    .about-stat-box p {
        color: var(--color-surface-strong);
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .about-stat-box small {
        color: var(--color-muted);
    }

    .gradient-card {
        border: none !important;
        color: #ffffff;
        position: relative;
        overflow: hidden;
        transition: transform 300ms ease, box-shadow 300ms ease;
    }

    .gradient-card::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 300ms ease;
        z-index: 0;
    }

    .gradient-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(128, 18, 255, 0.2);
    }

    .card-1 {
        background: linear-gradient(135deg, #8012FF 0%, #4b0a99 100%);
    }

    .card-2 {
        background: linear-gradient(135deg, #a855f7 0%, #6d0fd6 100%);
    }

    .card-3 {
        background: linear-gradient(135deg, #6d0fd6 0%, #2e075f 100%);
    }

    .card-4 {
        background: linear-gradient(135deg, #9b4dff 0%, #4c1d95 100%);
    }

    .card-5 {
        background: linear-gradient(135deg, #4c1d95 0%, #240046 100%);
    }

    .card-6 {
        background: linear-gradient(135deg, #9333ea 0%, #3b0764 100%);
    }

    .service-icon-lg {
        font-size: 3rem;
        margin-bottom: 1rem;
        display: block;
    }

    .service-list {
        list-style: none;
        padding: 0;
        margin-top: 1.5rem;
    }

    .service-list li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
        opacity: 0.95;
    }

    .industry-card {
        background: linear-gradient(135deg, rgba(128, 18, 255, 0.1), rgba(168, 85, 247, 0.1));
        border: 1px solid rgba(128, 18, 255, 0.2);
        padding: 2rem 1.5rem;
        text-align: center;
        transition: transform 300ms ease, box-shadow 300ms ease;
        border-radius: 12px;
        cursor: pointer;
    }

    .industry-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(128, 18, 255, 0.15);
        background: linear-gradient(135deg, rgba(128, 18, 255, 0.15), rgba(168, 85, 247, 0.15));
    }

    .industry-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        display: block;
    }

    .industry-card h4 {
        color: var(--color-surface-strong);
        font-weight: 700;
        margin: 0;
    }

    .tech-category {
        margin-bottom: 2rem;
    }

    .tech-title {
        color: var(--color-surface-strong);
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .tech-list-inline {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .tech-badge {
        display: inline-block;
        background: linear-gradient(135deg, rgba(128, 18, 255, 0.15), rgba(168, 85, 247, 0.15));
        border: 1px solid rgba(128, 18, 255, 0.3);
        color: var(--color-primary);
        padding: 0.6rem 1.2rem;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        transition: all 300ms ease;
    }

    .tech-badge:hover {
        background: linear-gradient(135deg, rgba(128, 18, 255, 0.25), rgba(168, 85, 247, 0.25));
        transform: translateY(-2px);
    }

    .process-step {
        background: #ffffff;
        border: 1px solid var(--color-line);
        padding: 2rem;
        border-radius: 12px;
        text-align: center;
        transition: all 300ms ease;
    }

    .process-step:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-soft);
        border-color: var(--color-primary);
    }

    .step-number {
        display: inline-block;
        width: 50px;
        height: 50px;
        background: linear-gradient(120deg, var(--color-primary), var(--color-accent));
        color: white;
        font-size: 1.5rem;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-bottom: 1rem;
    }

    .process-step h3 {
        color: var(--color-surface-strong);
        font-weight: 700;
        margin-bottom: 0.8rem;
    }

    .process-step p {
        color: var(--color-muted);
        margin: 0;
        font-size: 0.9rem;
    }

    .testimonial-card {
        background: #ffffff;
        border: 1px solid var(--color-line);
        padding: 2rem;
        border-radius: 12px;
        box-shadow: var(--shadow-card);
        transition: all 300ms ease;
    }

    .testimonial-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-soft);
    }

    .stars {
        color: #ffc107;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .testimonial-text {
        color: var(--color-text);
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        font-style: italic;
    }

    .testimonial-author strong {
        color: var(--color-surface-strong);
        display: block;
        margin-bottom: 0.25rem;
    }

    .testimonial-author small {
        color: var(--color-muted);
    }

    .faq-item {
        background: #ffffff;
        border: 1px solid var(--color-line);
        padding: 1.5rem;
        margin-bottom: 1rem;
        border-radius: 12px;
        cursor: pointer;
        transition: all 300ms ease;
    }

    .faq-item:hover {
        box-shadow: var(--shadow-card);
        border-color: var(--color-primary);
    }

    .faq-item h3 {
        color: var(--color-surface-strong);
        font-weight: 700;
        margin-bottom: 0.8rem;
        font-size: 1rem;
    }

    .faq-item p {
        color: var(--color-muted);
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .contact-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-column h5 {
        color: #ffffff;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .footer-column p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
    }

    .footer-column ul li {
        margin-bottom: 0.5rem;
    }

    .footer-column a {
        color: rgba(255, 255, 255, 0.7);
        transition: color 300ms ease;
    }

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

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transition: all 300ms ease;
    }

    .social-links a:hover {
        background: var(--color-primary);
        border-color: var(--color-primary);
    }

    .footer-bottom {
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.85rem;
    }

    .footer-bottom p {
        margin: 0.5rem 0;
    }

    .lead-text {
        font-size: 1.15rem;
        color: var(--color-muted);
        line-height: 1.8;
    }

    .gradient-heading {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .section-pad {
        padding: 96px 0;
    }

    .section-heading {
        margin: 0 auto 3rem;
        max-width: 720px;
        text-align: center;
    }

    .section-heading h2,
    .contact-panel h2 {
        color: var(--color-surface-strong);
        font-size: clamp(2rem, 4vw, 3.25rem);
        font-weight: 800;
        line-height: 1.08;
        margin-bottom: 1rem;
    }

    .section-heading p:not(.eyebrow),
    .section-note {
        color: var(--color-muted);
        font-size: 1.05rem;
    }

    .services-section {
        background: #fbf8ff;
    }

    .industries-section {
        background: linear-gradient(135deg, rgba(128, 18, 255, 0.02), rgba(168, 85, 247, 0.02));
    }

    .process-section {
        background: #ffffff;
    }

    .testimonials-section {
        background: linear-gradient(135deg, rgba(128, 18, 255, 0.05), rgba(168, 85, 247, 0.05));
    }

    .faq-section {
        background: #ffffff;
    }

    .contact-section {
        background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    }

    .contact-panel {
        align-items: center;
        justify-content: space-between;
        gap: 3rem;
        padding: clamp(2rem, 4vw, 3rem);
    }

    .contact-panel .eyebrow,
    .contact-panel h2,
    .contact-panel p {
        color: #ffffff;
    }

    .contact-panel p {
        margin-bottom: 0;
        max-width: 680px;
    }

    .site-footer {
        background: linear-gradient(135deg, #08080b, #1a080b);
        color: rgba(255, 255, 255, 0.8);
        padding: 3rem 0 2rem;
    }

    @media (max-width: 991.98px) {
        .hero-section {
            padding-top: 174px;
        }

        .marketing-hero {
            padding: 178px 0 82px;
        }

        .marketing-hero .hero-title,
        .marketing-hero .hero-copy {
            max-width: 640px;
        }

        .hero-device {
            bottom: 6%;
            height: 360px;
            opacity: 0.42;
            right: -12%;
            width: 520px;
        }

        .hero-social-rail {
            right: 0;
        }

        .hero-slider-arrows {
            display: none;
        }

        .page-hero {
            padding-top: 184px;
        }

        .contact-panel {
            align-items: flex-start;
            flex-direction: column;
        }

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

        .admin-sidebar {
            height: auto;
            position: static;
        }

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

        .admin-topbar {
            align-items: flex-start;
            flex-direction: column;
            gap: 1rem;
            padding: 1rem;
            position: static;
        }

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

    @media (max-width: 575.98px) {
        .console-grid,
        .stack-board {
            grid-template-columns: 1fr;
        }

        .code-panel {
            grid-column: auto;
        }

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

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

        .hero-section {
            padding-top: 210px;
        }

        .marketing-hero {
            min-height: auto;
            padding: 218px 0 96px;
        }

        .hero-kicker {
            font-size: 0.72rem;
            letter-spacing: 0.2em;
        }

        .marketing-hero .hero-title {
            font-size: 2.15rem;
        }

        .marketing-hero .hero-copy {
            font-size: 0.98rem;
        }

        .hero-actions {
            align-items: stretch;
            flex-direction: column;
            max-width: 280px;
        }

        .hero-btn {
            min-width: 0;
            width: 100%;
        }

        .hero-device {
            bottom: 42px;
            height: 280px;
            opacity: 0.2;
            right: -44%;
            width: 400px;
        }

        .hero-social-rail {
            display: none;
        }

        .hero-call-float {
            bottom: 18px;
            height: 62px;
            left: 18px;
            width: 62px;
        }

        .page-hero {
            padding-top: 220px;
        }

        .hero-badge {
            font-size: 0.85rem;
            padding: 0.5rem 1rem;
        }

        .hero-title {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .hero-copy {
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .stat-badge {
            font-size: 2rem;
            padding: 0.8rem 1.2rem;
        }

        .about-stat-box {
            padding: 1.5rem;
        }

        .about-features {
            gap: 1rem;
        }

        .feature-item {
            gap: 0.8rem;
        }

        .feature-icon {
            font-size: 1.5rem;
        }

        .feature-item h4 {
            font-size: 0.95rem;
        }

        .service-icon-lg {
            font-size: 2.5rem;
            margin-bottom: 0.8rem;
        }

        .process-step {
            padding: 1.5rem;
        }

        .footer-column h5 {
            font-size: 1rem;
            margin-bottom: 0.8rem;
        }

        .footer-column p {
            font-size: 0.85rem;
        }

        .section-heading h2 {
            font-size: 1.8rem;
        }

        .gradient-heading {
            font-size: 1.8rem;
        }

        .tech-list-inline {
            justify-content: center;
        }

        .hero-stats-floating {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .stat-card-1,
        .stat-card-2,
        .stat-card-3 {
            position: relative;
            top: auto;
            right: auto;
            bottom: auto;
        }
    }

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

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

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

        .hero-circle-icon {
            animation: none;
        }

        .badge-dot {
            animation: none;
        }

        .stat-card {
            animation: none;
        }
    }


/* Reference-style footer */
.site-footer {
    background: #160b27;
    border-top: 0;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    padding: 0;
}

.footer-help {
    background:
        linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px),
        linear-gradient(105deg, #8012ff 0%, #4b0a99 48%, #24134b 100%);
    background-size: 56px 56px, 56px 56px, auto;
    border-radius: 0;
    overflow: hidden;
    padding: clamp(4rem, 7vw, 5.4rem) 0;
    position: relative;
}

.footer-help::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 32%),
        radial-gradient(circle at 82% 50%, rgba(20, 184, 166, 0.16), transparent 28%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.footer-help > .container {
    position: relative;
    z-index: 1;
}

.footer-help-inner {
    align-items: center;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr) auto;
}

.footer-help-copy h2 {
    color: #ffffff;
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 0.95rem;
}

.footer-help-copy p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.02rem;
    margin: 0 0 1rem;
}

.footer-help-phone {
    align-items: center;
    color: #ffffff;
    display: inline-flex;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 900;
    gap: 0.7rem;
    margin-top: 0;
}

.footer-help-phone i {
    font-size: 1.05rem;
}

.footer-help-phone:hover,
.footer-help-phone:focus {
    color: #ffffff;
}

.footer-help-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
}

.footer-btn {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 0;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    min-height: 58px;
    min-width: 152px;
    padding: 0.95rem 1.5rem;
    transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.footer-btn-light {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--color-primary);
}

.footer-btn-outline {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
}

.footer-btn:hover,
.footer-btn:focus {
    transform: translateY(-2px);
}

.footer-btn-light:hover,
.footer-btn-light:focus {
    background: #f4eaff;
    color: var(--color-primary-dark);
}

.footer-btn-outline:hover,
.footer-btn-outline:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.footer-main {
    background:
        radial-gradient(circle at 20% 0%, rgba(128, 18, 255, 0.18), transparent 30%),
        linear-gradient(180deg, #170f31 0%, #120b24 100%);
    padding: clamp(3.6rem, 6vw, 5rem) 0 3.2rem;
}

.site-footer .footer-grid {
    align-items: start;
    border-bottom: 0;
    display: grid;
    gap: clamp(1.8rem, 4vw, 3.1rem);
    grid-template-columns: minmax(280px, 1.45fr) repeat(4, minmax(145px, 0.72fr));
    margin: 0;
    padding: 0;
}

.footer-brand-column h3 {
    color: #ffffff;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 900;
    margin: 0 0 1.25rem;
}

.footer-brand-column p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin: 0 0 1.35rem;
    max-width: 520px;
}

.footer-contact-list {
    display: grid;
    gap: 1rem;
    list-style: none;
    margin: 0 0 1.45rem;
    padding: 0;
}

.footer-contact-list li {
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.78);
    display: flex;
    gap: 0.75rem;
    margin: 0;
}

.site-footer .footer-contact-list i {
    color: #ba7cff;
    line-height: 1.45;
    margin: 0;
    min-width: 1rem;
}

.site-footer a,
.site-footer span {
    color: inherit;
    display: inline;
    margin-top: 0;
}

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

.site-footer .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.site-footer .social-links a {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.74);
    display: inline-flex;
    height: 42px;
    justify-content: center;
    margin: 0;
    transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
    width: 42px;
}

.site-footer .social-links i {
    color: inherit;
    margin: 0;
}

.site-footer .social-links a:hover,
.site-footer .social-links a:focus {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.site-footer .footer-column h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
    margin: 0 0 1.25rem;
    padding-bottom: 0.9rem;
    position: relative;
}

.site-footer .footer-column h4::after {
    background: rgba(186, 124, 255, 0.22);
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 84px;
}

.site-footer .footer-column ul {
    display: grid;
    gap: 0.82rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer .footer-column li {
    color: rgba(255, 255, 255, 0.73);
    font-size: 0.95rem;
    line-height: 1.45;
    margin: 0;
}

.site-footer .footer-column a {
    color: rgba(255, 255, 255, 0.73);
    display: inline-block;
    transition: color 220ms ease, transform 220ms ease;
}

.site-footer .footer-column a:hover,
.site-footer .footer-column a:focus {
    color: #ffffff;
    transform: translateX(3px);
}

.site-footer .footer-bottom {
    background: rgba(10, 6, 22, 0.72);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
    padding: 1.15rem 0;
    text-align: left;
}

.footer-bottom-inner {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.footer-bottom-inner p {
    margin: 0;
}

.footer-bottom-inner nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.3rem;
    justify-content: flex-end;
}

.footer-bottom-inner a {
    color: rgba(255, 255, 255, 0.58);
}

.footer-bottom-inner a:hover,
.footer-bottom-inner a:focus {
    color: #ffffff;
}

.footer-help,
.footer-help *,
.footer-btn {
    border-radius: 0;
}

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

    .footer-brand-column {
        grid-column: 1 / -1;
    }
}

@media (max-width: 991.98px) {
    .footer-help-inner {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }

    .footer-help-actions {
        justify-content: flex-start;
    }

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

    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom-inner nav {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .footer-help {
        padding: 3rem 0;
    }

    .footer-help-actions,
    .footer-btn {
        width: 100%;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        padding: 3rem 0 2.4rem;
    }

    .footer-bottom-inner nav {
        gap: 0.8rem 1rem;
    }
}

.admin-login-page {
    background:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(135deg, #08080b 0%, #241047 55%, #102d35 100%);
    background-size: 64px 64px, 64px 64px, auto;
    min-height: 100vh;
}

.admin-login-shell {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.admin-login-panel {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
    max-width: 430px;
    padding: clamp(1.5rem, 4vw, 2.4rem);
    width: 100%;
}

.admin-login-brand {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.4rem;
}

.admin-login-brand span {
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 900;
}

.admin-login-brand small {
    color: var(--color-muted);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.admin-login-panel h1 {
    color: var(--color-surface-strong);
    font-size: clamp(1.8rem, 4vw, 2.35rem);
    font-weight: 900;
    margin-bottom: 0.55rem;
}

.admin-login-panel p {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.4rem;
}

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

.admin-login-form label {
    color: var(--color-surface-strong);
    font-size: 0.82rem;
    font-weight: 800;
    margin: 0;
}

.admin-login-check {
    align-items: center;
    display: flex;
    gap: 0.55rem;
}

.admin-login-check input {
    accent-color: var(--color-primary);
}

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

.admin-fixed-logout {
    margin: 0;
    position: fixed;
    right: 1.2rem;
    top: 1.2rem;
    z-index: 20;
}

.admin-fixed-logout .btn {
    box-shadow: 0 12px 26px rgba(58, 8, 122, 0.18);
    font-size: 0.82rem;
    padding: 0.62rem 0.9rem;
}
