:root {
    --header-offset: 145px;

    --nav-surface: rgba(16, 24, 38, 0.78);
    --nav-border: rgba(255, 255, 255, 0.10);
    --nav-border-soft: rgba(255, 255, 255, 0.05);
    --nav-link: rgba(255, 255, 255, 0.84);
    --nav-link-hover: rgba(255, 255, 255, 0.98);
    --nav-link-active-bg: rgba(255, 255, 255, 0.08);
    --nav-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
	--page-bg-solid: #0b1220;
}

html,
body {
    background-color: var(--page-bg-solid);
}

main {
    background-color: var(--page-bg-solid);
}

/* ======================================================
   CUSTOM FONTS
====================================================== */

@font-face {
    font-family: "DMS Trebuchet";
    src: url("../fonts/trebuc.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "DMS Trebuchet";
    src: url("../fonts/Trebuchet-MS-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}





/* =========================
   HEADER / NAVBAR
========================= */

.site-header {
    position: fixed;
    top: 16px;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding: 0 24px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    max-width: 1380px;
    margin: 0 auto;
    padding: 14px 18px;

    border-radius: 24px;
    background: var(--nav-surface);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--nav-border);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.02),
        var(--nav-shadow);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo img {
    height: 86px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.main-nav a {
    font-family: "Jason Becker Light", Arial, sans-serif;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    color: var(--nav-link);
    text-decoration: none;
    transition:
        color 0.22s ease,
        background-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease,
        opacity 0.22s ease;
}

.main-nav a::after {
    display: none;
}

.main-nav a:hover {
    color: var(--nav-link-hover);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
    opacity: 1;
}

.main-nav a.active,
.main-nav a[aria-current="page"] {
    color: #ffffff;
    background: var(--nav-link-active-bg);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.10),
        inset 0 -2px 2px rgba(0, 0, 0, 0.18),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.main-nav a[aria-current="page"],
.logo[aria-current="page"] {
    cursor: pointer;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: var(--radius-pill);
    font-weight: 375;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        opacity 0.22s ease;
    font-family: "Jason Becker Light", Arial, sans-serif;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #d62828, #0a4583);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #ffffff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 10px 24px rgba(0, 0, 0, 0.20);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #dd3b3b, #11539d);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    opacity: 1;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 14px 30px rgba(0, 0, 0, 0.24);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 30;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    margin: 5px 0;
    transition: all 0.25s ease;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 24px;
    right: 24px;
    width: auto;
    background: rgba(10, 20, 35, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 18px 22px 20px;
    z-index: 25;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.mobile-nav a {
    display: block;
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 1.05rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.site-header.menu-open .mobile-nav {
    display: block;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 901px) {
    .header-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
        padding: 0 22px;
        font-size: 0.95rem;
        line-height: 1;
    }
}

/* =========================
   HERO TYPOGRAPHY
========================= */

.hero-content h1 {
    font-family: "Grandview", Arial, sans-serif;
}

.hero-content p {
    font-family: "GrandviewLightItalic", Arial, sans-serif;
    font-style: italic;
    line-height: 1.15;
    margin-top: 10px;
    margin-bottom: 14px;
}

/* =========================
   SOFTWARE HERO
========================= */

.software-hero {
    min-height: 100vh;
    background: url("../img/hero/software.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 60px;
}

.software-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.software-hero-fullscreen {
    min-height: 100vh;
    overflow: hidden;
}

.software-hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 40px 30px;
}

.software-hero-overlay h1 {
    font-family: "Grandview", Arial, sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    margin-bottom: 16px;
}

.software-hero-overlay p {
    font-family: "GrandviewLightItalic", Arial, sans-serif;
    font-size: clamp(1rem, 2vw, 1.45rem);
    line-height: 1.2;
    margin: 0 0 28px 0;
}

.software-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    padding: 16px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0a4583, #1663b7);
    color: #ffffff;
    text-decoration: none;
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 30px rgba(10, 69, 131, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.software-hero-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(10, 69, 131, 0.45);
    opacity: 1;
}

/* =========================
   SOFTWARE PACKAGES PAGE
========================= */

.software-page {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    min-height: calc(100vh - var(--header-offset));
    margin-top: var(--header-offset);
    padding: 18px 26px 26px;
    background: var(--page-bg-solid);
    color: #ffffff;
}

.software-sidebar {
    width: 280px;
    min-width: 280px;
    padding: 24px 20px;
    margin: 0;
    background: rgba(11, 18, 32, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 18px 40px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: sticky;
    top: calc(var(--header-offset) + 18px);
    align-self: flex-start;
    height: calc(100vh - var(--header-offset) - 36px);
    overflow-y: auto;
}

.software-sidebar h2 {
    font-family: "Grandview", Arial, sans-serif;
    font-size: 2.1rem;
    line-height: 1;
    margin-bottom: 22px;
    color: #ffffff;
    padding: 0 8px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.software-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 8px;
}

.software-tab-link {
    position: relative;
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.84);
    padding: 14px 16px 14px 18px;
    border-radius: 16px;
    cursor: pointer;
    transition:
        color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.software-tab-link::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 56%;
    border-radius: 999px;
    background: linear-gradient(180deg, #4e89d8 0%, #0a4583 100%);
    transition: transform 0.22s ease;
}

.software-tab-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: translateX(2px);
}

.software-tab-link:hover::before {
    transform: translateY(-50%) scaleY(1);
}

.software-tab-link.active {
    color: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 -2px 4px rgba(0, 0, 0, 0.18),
        0 10px 22px rgba(0, 0, 0, 0.14);
}

.software-tab-link.active::before {
    transform: translateY(-50%) scaleY(1);
}

.software-main {
    width: 100%;
    min-width: 0;
    padding: 0;
    margin: 0;
}

.software-tab-panel {
    display: none;
}

.software-tab-panel.active {
    display: block;
    animation: softwareFadeIn 0.28s ease;
}

@keyframes softwareFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.software-intro-block {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 34px 36px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(11, 18, 32, 0.82);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 40px rgba(0, 0, 0, 0.16);
}

.software-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7da6d8;
}

.software-intro-block h2,
.software-intro-block h1 {
    font-family: "Grandview", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    margin-bottom: 22px;
    color: #ffffff;
    max-width: none;
}

.software-intro-block p {
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 1.03rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.86);
    max-width: none;
    margin-bottom: 18px;
}

.software-intro-block {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 34px 36px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(11, 18, 32, 0.82);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 40px rgba(0, 0, 0, 0.16);
}

.software-section h2 {
    font-family: "Grandview", Arial, sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 18px;
    color: #ffffff;
}

.software-section p {
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 1.04rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: none;
}

.software-section,
.software-intro-block {
    scroll-margin-top: calc(var(--header-offset) + 20px);
}

.btn-primary {
    background: var(--color-red-accent);
    border: 1px solid var(--color-red-accent);
    color: #ffffff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
    background: #b71f1f;
    border: 1px solid #b71f1f;
    color: #ffffff;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 14px 30px rgba(0, 0, 0, 0.22);
}

.software-nav-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.software-subnav {
    display: none;
    margin-left: 8px;
    padding: 14px 12px 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
}

.software-subnav.active {
    display: block;
}

.software-subnav-search {
    margin-bottom: 12px;
}

.software-subnav-search input {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.software-subnav-search input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.software-subnav-search input:focus {
    border-color: rgba(10, 69, 131, 0.8);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(10, 69, 131, 0.16);
}

.software-subnav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.software-subtab-link {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    text-align: left;
    padding: 11px 12px;
    border-radius: 12px;
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 0.94rem;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.software-subtab-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transform: translateX(2px);
}

.software-subtab-link.active {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.software-subtab-panel {
    display: none;
    width: 100%;
}

.software-subtab-panel.active {
    display: block;
    width: 100%;
}

.software-subtab-panel .software-section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 34px 36px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(11, 18, 32, 0.82);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 16px 34px rgba(0, 0, 0, 0.14);
}

.software-tab-panel.active > .software-section,
.software-tab-panel.active > .software-intro-block,
.software-tab-panel.active .software-subtab-panel.active > .software-section {
    margin-top: 0;
}

.mn-form-row {
    display: grid;
    grid-template-columns: 180px minmax(240px, 380px);
    align-items: center;
    gap: 18px;
    margin-top: 28px;
}

.mn-form-label {
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 1rem;
    color: #ffffff;
}

.mn-form-select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 0.98rem;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.mn-form-select:focus {
    border-color: rgba(10, 69, 131, 0.85);
    box-shadow: 0 0 0 3px rgba(10, 69, 131, 0.16);
    background: rgba(255, 255, 255, 0.06);
}

.mn-form-select option {
    background: #0b1220;
    color: #ffffff;
}

.mn-action-row {
    margin-top: 20px;
}

.mn-customize-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: var(--color-red-accent);
    color: #ffffff;
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 0.96rem;
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 10px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.mn-customize-btn:hover {
    background: #b71f1f;
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 14px 30px rgba(0, 0, 0, 0.22);
}

.mn-modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 4000;
}

.mn-modal-overlay.active {
    display: flex;
}

.mn-modal-window {
    width: 75vw;
    height: 75vh;
    max-width: 1400px;
    max-height: 900px;
    min-width: 320px;
    min-height: 320px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(11, 18, 32, 0.96);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 24px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mn-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mn-modal-header h3 {
    margin: 0;
    font-family: "Grandview", Arial, sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
}

.mn-modal-close {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.22s ease, transform 0.22s ease;
}

.mn-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.04);
}

.mn-modal-body {
    flex: 1;
    padding: 26px;
    overflow: auto;
    color: rgba(255, 255, 255, 0.88);
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

.mn-form-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 28px;
    max-width: 420px;
}

.mn-form-label {
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 1rem;
    color: #ffffff;
}

.mn-form-select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 0.98rem;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.mn-form-select:focus {
    border-color: rgba(10, 69, 131, 0.85);
    box-shadow: 0 0 0 3px rgba(10, 69, 131, 0.16);
    background: rgba(255, 255, 255, 0.06);
}

.mn-form-select option {
    background: #0b1220;
    color: #ffffff;
}

.mn-customize-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 0.96rem;
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 10px 24px rgba(0, 0, 0, 0.16);
    transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mn-customize-btn:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 14px 30px rgba(0, 0, 0, 0.20);
}

.mn-modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 4000;
}

.mn-modal-overlay.active {
    display: flex;
}

.mn-modal-window {
    width: 75vw;
    height: 75vh;
    max-width: 1400px;
    max-height: 900px;
    min-width: 320px;
    min-height: 320px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(11, 18, 32, 0.96);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 24px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mn-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mn-modal-header h3 {
    margin: 0;
    font-family: "Grandview", Arial, sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
}

.mn-modal-close {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.22s ease, transform 0.22s ease;
}

.mn-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.04);
}

.mn-modal-body {
    flex: 1;
    padding: 26px;
    overflow: auto;
}

.mn-modal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 20px;
}

.mn-modal-card {
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mn-modal-card h4 {
    margin: 0 0 18px 0;
    font-family: "Grandview", Arial, sans-serif;
    font-size: 1.25rem;
    color: #ffffff;
}

.mn-modal-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.mn-modal-field label {
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
}

.mn-modal-field input {
    height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 0.96rem;
    outline: none;
}

.mn-modal-field input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.mn-modal-field input:focus {
    border-color: rgba(10, 69, 131, 0.85);
    box-shadow: 0 0 0 3px rgba(10, 69, 131, 0.16);
    background: rgba(255, 255, 255, 0.06);
}

.mn-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mn-modal-btn {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.mn-modal-btn:hover {
    transform: translateY(-1px);
}

.mn-modal-btn-primary {
    background: #0a4583;
    color: #ffffff;
}

.mn-modal-btn-primary:hover {
    background: #11539d;
}

.mn-modal-btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.mn-modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.10);
}

.mn-form-grid {
    --mn-label-width: 180px;
    --mn-control-width: 340px;

    display: grid;
    grid-template-columns: var(--mn-label-width) var(--mn-control-width);
    align-items: center;
    column-gap: 18px;
    row-gap: 16px;
    margin-top: 28px;
}

.mn-form-label {
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 1rem;
    color: #ffffff;
}

.mn-form-control {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 0.98rem;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

select.mn-form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.mn-form-control:focus {
    border-color: rgba(10, 69, 131, 0.85);
    box-shadow: 0 0 0 3px rgba(10, 69, 131, 0.16);
    background: rgba(255, 255, 255, 0.06);
}

.mn-form-control option {
    background: #0b1220;
    color: #ffffff;
}

.mn-customize-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.04);
}

.mn-customize-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

/* Modal */
.mn-modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 4000;
}

.mn-modal-overlay.active {
    display: flex;
}

.mn-modal-window {
    width: 75vw;
    height: 75vh;
    min-width: 320px;
    min-height: 320px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(11, 18, 32, 0.96);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 24px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mn-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mn-modal-header h3 {
    margin: 0;
    font-family: "Grandview", Arial, sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
}

.mn-modal-close {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.mn-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
}

.mn-modal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 22px 26px 26px;
    gap: 18px;
}

.mn-drawing-toolbar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mn-tool-btn {
    height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: "Jason Becker Light", Arial, sans-serif;
    cursor: pointer;
}

.mn-tool-btn:hover {
    background: rgba(255, 255, 255, 0.09);
}

.mn-drawing-grid-wrapper {
    flex: 1;
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    background: #0f1728;
}

.mn-drawing-grid {
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    background-position: 0 0;
}

.mn-inline-control-group {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.mn-inline-control-group .mn-form-control {
    width: 340px;
    flex: 0 0 340px;
}

.mn-checkbox-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.mn-checkbox-option {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    white-space: nowrap;
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
}

.mn-checkbox-option input[type="checkbox"] {
    margin: 0;
}

.mn-inline-control-group {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.mn-inline-control-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    flex: 0 0 auto;
}

.mn-tool-btn.active {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.18);
}

.mn-drawing-grid {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    background-position: 0 0;
}

.mn-grid-origin {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mn-origin-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.mn-origin-axis {
    position: absolute;
}

.mn-origin-axis-y {
    left: 50%;
    top: 50%;
    width: 120px;
    height: 2px;
    background: #cf3b3b;
    transform: translateY(-50%);
}

.mn-origin-axis-z {
    left: 50%;
    top: calc(50% - 120px);
    width: 2px;
    height: 120px;
    background: #3aa85a;
    transform: translateX(-50%);
}

.mn-origin-arrow {
    position: absolute;
    width: 0;
    height: 0;
}

.mn-origin-arrow-y {
    left: calc(50% + 120px);
    top: 50%;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 12px solid #cf3b3b;
    transform: translateY(-50%);
}

.mn-origin-arrow-z {
    left: 50%;
    top: calc(50% - 120px - 12px);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid #3aa85a;
    transform: translateX(-50%);
}

.mn-origin-label {
    position: absolute;
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
}

.mn-origin-label-y {
    left: calc(50% + 138px);
    top: calc(50% - 12px);
    color: #cf3b3b;
}

.mn-origin-label-z {
    left: calc(50% + 10px);
    top: calc(50% - 146px);
    color: #3aa85a;
}

.mn-grid-overlay-controls {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 20;
    display: flex;
    gap: 10px;
}

.mn-grid-overlay-btn {
    height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(11, 18, 32, 0.88);
    color: #ffffff;
    font-family: "Jason Becker Light", Arial, sans-serif;
    cursor: pointer;
}

.mn-grid-overlay-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.mn-nodes-panel {
    position: absolute;
    left: 16px;
    top: 68px;
    width: 260px;
    max-height: 260px;
    display: none;
    flex-direction: column;
    z-index: 25;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(11, 18, 32, 0.96);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.mn-nodes-panel.active {
    display: flex;
}

.mn-nodes-panel-header {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: "Jason Becker Light", Arial, sans-serif;
    color: #ffffff;
}

.mn-nodes-table-wrap {
    overflow: auto;
}

.mn-nodes-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 0.92rem;
    color: #ffffff;
}

.mn-nodes-table th,
.mn-nodes-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mn-nodes-table th {
    background: rgba(255, 255, 255, 0.04);
}

.mn-node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #0a4583;
    transform: translate(-50%, -50%);
    z-index: 12;
}

.mn-node-label {
    position: absolute;
    left: 14px;
    top: -8px;
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 0.8rem;
    color: #ffffff;
    white-space: nowrap;
}

.mn-node-editor {
    position: absolute;
    z-index: 30;
    min-width: 120px;
    height: 34px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(11, 18, 32, 0.96);
    color: #ffffff;
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 0.9rem;
    outline: none;
    transform: translate(12px, -18px);
}

.mn-node-editor::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.mn-grid-coordinates {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 20;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(11, 18, 32, 0.88);
    color: #ffffff;
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 0.92rem;
    white-space: nowrap;
}

.mn-toolbar-dropdown {
    position: relative;
    margin-left: auto;
}

.mn-toolbar-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    display: none;
    flex-direction: column;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(11, 18, 32, 0.96);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    z-index: 50;
}

.mn-toolbar-dropdown-menu.active {
    display: flex;
}

.mn-toolbar-dropdown-item {
    width: 100%;
    min-height: 40px;
    padding: 0 12px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: rgba(255, 255, 255, 0.45);
    font-family: "Jason Becker Light", Arial, sans-serif;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease;
}

.mn-toolbar-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.mn-toolbar-dropdown-item.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.mn-line-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 6;
}

.mn-line-svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mn-line-segment {
    stroke: #2f80ed;
    stroke-width: 3;
    fill: none;
}
/* ======================================================
   SERVICES HERO - DESKTOP
====================================================== */

.services-hero {
    font-family: "DMS Trebuchet", "Trebuchet MS", Arial, sans-serif;
}

.services-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 760px;
    overflow: hidden;
}

/* Achtergrondvideo */
.services-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Donkere overlay over video */
.services-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.65) 45%,
            rgba(0, 0, 0, 0.35) 100%
        );
}

/* Content gebied */
.services-hero-content {
    position: relative;
    z-index: 2;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    color: #39ff88;
}

/* Titel box */
.services-title-box {
    display: inline-block;

    padding: 26px 56px;
    margin-bottom: 32px;

    border: 1px solid rgba(9, 68, 131, 0.75);
    border-radius: 16px;

    background: rgba(9, 68, 131, 0.18);
    backdrop-filter: blur(8px);

    box-shadow:
        0 0 28px rgba(9, 68, 131, 0.28),
        inset 0 0 18px rgba(9, 68, 131, 0.10);
}

.services-title-box h1 {
    margin: 0;

    font-size: 96px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -2px;

    color: rgba(9, 68, 131, 1);

    text-shadow:
        0 0 12px rgba(9, 68, 131, 0.60),
        0 0 32px rgba(9, 68, 131, 0.35);
}

/* Tekst box */
.services-text-box {
    width: 820px;

    padding: 28px 36px;
    margin-bottom: 42px;

    border: 1px solid rgba(57, 255, 136, 0.45);
    border-radius: 16px;

    background: rgba(0, 20, 10, 0.26);
    backdrop-filter: blur(8px);

    box-shadow:
        0 0 24px rgba(57, 255, 136, 0.14),
        inset 0 0 18px rgba(57, 255, 136, 0.04);
}

.services-text-box p {
    margin: 0;

    font-size: 24px;
    line-height: 1.65;
    font-weight: 500;

    color: #39ff88;

    text-shadow:
        0 0 10px rgba(57, 255, 136, 0.35);
}

/* Knoppen */
.services-hero .hero-buttons {
    display: flex;
    gap: 22px;
    align-items: center;
}

/* Primaire knop */
.services-hero .btn-primary {
    background: #39ff88;
    color: #06140b;
    border: 1px solid #39ff88;

    box-shadow: 0 0 22px rgba(57, 255, 136, 0.25);
}

.services-hero .btn-primary:hover {
    background: #28dd72;
    border-color: #28dd72;
    color: #06140b;
}

/* Secundaire knop */
.services-hero .btn-secondary {
    color: #39ff88;
    border: 1px solid rgba(57, 255, 136, 0.70);
    background: rgba(0, 20, 10, 0.25);

    box-shadow: 0 0 18px rgba(57, 255, 136, 0.10);
}

.services-hero .btn-secondary:hover {
    background: rgba(57, 255, 136, 0.12);
    color: #39ff88;
}

/* ======================================================
   SERVICES FEATURES PAGE - DESKTOP
====================================================== */

.features-page {
    min-height: 100vh;
    padding: 220px 0 100px;

    background:
        radial-gradient(circle at top left, rgba(9, 68, 131, 0.22), transparent 35%),
        linear-gradient(135deg, #020611 0%, #06111f 55%, #020611 100%);

    color: #ffffff;
}

.features-page-content h1 {
    margin-bottom: 24px;

    font-size: 25px;
    line-height: 1;
    font-weight: 600;

    color: rgba(9, 68, 131, 1);

    text-shadow:
        0 0 14px rgba(9, 68, 131, 0.55),
        0 0 32px rgba(9, 68, 131, 0.28);
}

.features-page-content > p {
    max-width: 820px;
    margin-bottom: 60px;

    font-size: 18px;
    line-height: 1.6;

    color: #39ff88;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;

    max-width: 1100px;
}

.feature-card {
    padding: 34px 36px;

    border: 1px solid rgba(57, 255, 136, 0.35);
    border-radius: 18px;

    background: rgba(0, 20, 10, 0.22);
    backdrop-filter: blur(8px);

    box-shadow:
        0 0 22px rgba(57, 255, 136, 0.10),
        inset 0 0 18px rgba(57, 255, 136, 0.04);
}

.feature-card h2 {
    margin-bottom: 16px;

    font-size: 28px;
    font-weight: 600;

    color: #39ff88;
}

.feature-card p {
    margin: 0;

    font-size: 18px;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.82);
}

.features-actions {
    margin-top: 48px;
}

/* ======================================================
   CLICKABLE FEATURE CARDS
====================================================== */

.feature-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.automation-card {
    position: relative;
    overflow: hidden;

    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
}

.automation-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(57, 255, 136, 0.24),
            transparent 40%
        );

    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.automation-card:hover {
    transform: translateY(-8px);

    border-color: rgba(57, 255, 136, 0.75);
    background: rgba(0, 30, 14, 0.34);

    box-shadow:
        0 0 32px rgba(57, 255, 136, 0.25),
        0 18px 45px rgba(0, 0, 0, 0.35),
        inset 0 0 24px rgba(57, 255, 136, 0.08);
}

.automation-card:hover::before {
    opacity: 1;
}

.automation-card h2,
.automation-card p {
    position: relative;
    z-index: 2;
}

.automation-card:hover h2 {
    color: #39ff88;

    text-shadow:
        0 0 12px rgba(57, 255, 136, 0.55),
        0 0 28px rgba(57, 255, 136, 0.25);
}

/* ======================================================
   AUTOMATION PAGE - DESKTOP
====================================================== */

.automation-page {
    min-height: 100vh;
    padding: 220px 0 100px;

    background:
        radial-gradient(circle at top left, rgba(57, 255, 136, 0.16), transparent 34%),
        linear-gradient(135deg, #020611 0%, #06111f 55%, #020611 100%);

    color: #ffffff;
}

.automation-page-content h1 {
    margin-bottom: 24px;

    font-size: 48px;
    line-height: 1;
    font-weight: 600;

    color: #39ff88;

    text-shadow:
        0 0 14px rgba(57, 255, 136, 0.55),
        0 0 32px rgba(57, 255, 136, 0.28);
}

.automation-page-content > p {
    max-width: 850px;
    margin-bottom: 32px;

    font-size: 22px;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.82);
}

.automation-actions {
    margin-bottom: 44px;
}

/* Layout met verticale navigatie */
.automation-dashboard-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 42px;

    align-items: start;
    max-width: 1180px;
}

/* Verticale sidebar nav */
.automation-side-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;

    padding: 14px;

    border: 1px solid rgba(57, 255, 136, 0.18);
    border-radius: 18px;

    background: rgba(7, 15, 31, 0.86);
    backdrop-filter: blur(10px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.35),
        inset 0 0 22px rgba(57, 255, 136, 0.03);
}

.automation-side-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    min-height: 48px;
    padding: 0 14px;

    border: 1px solid transparent;
    border-radius: 8px;

    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.automation-side-nav-item:hover {
    transform: translateX(4px);

    background: rgba(57, 255, 136, 0.08);
    border-color: rgba(57, 255, 136, 0.28);

    color: #39ff88;

    box-shadow:
        0 0 20px rgba(57, 255, 136, 0.12),
        inset 0 0 14px rgba(57, 255, 136, 0.04);
}

.automation-side-nav-item.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(57, 255, 136, 0.14);

    color: #ffffff;

    box-shadow:
        inset 0 0 18px rgba(57, 255, 136, 0.04);
}

.automation-nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 36px;
    height: 26px;
    padding: 0 10px;

    border: 1px solid rgba(57, 255, 136, 0.16);
    border-radius: 999px;

    background: rgba(5, 13, 28, 0.85);

    color: rgba(255, 255, 255, 0.88);

    font-size: 13px;
    font-weight: 500;
}

/* Rechter contentgebied */
.automation-dashboard-content {
    min-width: 0;
}

/* Content section */
.automation-section {
    max-width: 820px;

    padding: 38px 42px;

    border: 1px solid rgba(57, 255, 136, 0.32);
    border-radius: 18px;

    background: rgba(0, 20, 10, 0.18);
    backdrop-filter: blur(8px);

    box-shadow:
        0 0 22px rgba(57, 255, 136, 0.08),
        inset 0 0 18px rgba(57, 255, 136, 0.03);
}

.automation-section h2 {
    margin-bottom: 16px;

    font-size: 30px;
    font-weight: 600;

    color: #39ff88;

    text-shadow:
        0 0 12px rgba(57, 255, 136, 0.45);
}

.automation-section p {
    margin: 0;

    font-size: 18px;
    line-height: 1.65;

    color: rgba(255, 255, 255, 0.82);
}

/* ======================================================
   AUTOMATION RATING DEMO - DESKTOP
====================================================== */

.rating-demo-section {
    width: 100%;
}

.rating-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;

    width: 100%;
    max-width: 900px;
}

.rating-panel {
    min-height: 460px;
    padding: 34px 36px;

    border: 1px solid rgba(57, 255, 136, 0.32);
    border-radius: 18px;

    background: rgba(0, 20, 10, 0.20);
    backdrop-filter: blur(8px);

    box-shadow:
        0 0 24px rgba(57, 255, 136, 0.10),
        inset 0 0 18px rgba(57, 255, 136, 0.04);
}

.rating-panel h2 {
    margin-bottom: 26px;

    font-size: 28px;
    font-weight: 600;

    color: #39ff88;

    text-shadow:
        0 0 12px rgba(57, 255, 136, 0.45);
}

.rating-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rating-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.rating-field label {
    font-size: 15px;
    font-weight: 600;

    color: rgba(255, 255, 255, 0.92);
}

.rating-field input,
.rating-field textarea {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid rgba(57, 255, 136, 0.25);
    border-radius: 12px;

    background: rgba(5, 13, 28, 0.82);

    color: #ffffff;

    font-size: 15px;
    font-family: inherit;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.rating-field textarea {
    resize: none;
}

.rating-field input:focus,
.rating-field textarea:focus {
    border-color: rgba(57, 255, 136, 0.72);
    background: rgba(5, 18, 32, 0.92);

    box-shadow:
        0 0 20px rgba(57, 255, 136, 0.16);
}

.rating-field input::placeholder,
.rating-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

/* Stars */
.rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 2px;
}

.star-btn {
    border: none;
    background: transparent;
    padding: 0;

    color: rgba(255, 255, 255, 0.28);

    font-size: 34px;
    line-height: 1;

    cursor: pointer;

    transition:
        color 0.18s ease,
        transform 0.18s ease,
        text-shadow 0.18s ease;
}

.star-btn:hover {
    transform: translateY(-2px) scale(1.08);
}

.star-btn.is-hovered,
.star-btn.is-selected {
    color: #ffd84d;

    text-shadow:
        0 0 10px rgba(255, 216, 77, 0.65),
        0 0 22px rgba(255, 216, 77, 0.25);
}

.rating-message {
    min-height: 22px;
    margin: -4px 0 0;

    font-size: 14px;
    color: #ffd84d;
}

.rating-submit {
    width: fit-content;
    margin-top: 4px;
}

/* Result panel */
.rating-result-panel {
    display: flex;
    flex-direction: column;
}

.rating-result-empty {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 290px;

    border: 1px dashed rgba(57, 255, 136, 0.25);
    border-radius: 14px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 16px;
    text-align: center;
}

.rating-result-card {
    padding: 22px 24px;

    border: 1px solid rgba(57, 255, 136, 0.38);
    border-radius: 14px;

    background: rgba(5, 13, 28, 0.78);

    box-shadow:
        0 0 22px rgba(57, 255, 136, 0.10),
        inset 0 0 14px rgba(57, 255, 136, 0.04);
}

.rating-result-card h3 {
    margin-bottom: 12px;

    font-size: 20px;
    font-weight: 600;

    color: #39ff88;
}

.rating-result-card p {
    margin-bottom: 16px;

    font-size: 15px;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.82);
}

.rating-result-stars {
    display: flex;
    gap: 5px;

    margin-bottom: 18px;

    color: #ffd84d;

    font-size: 28px;

    text-shadow:
        0 0 10px rgba(255, 216, 77, 0.55);
}

.rating-result-label {
    display: block;

    margin-bottom: 6px;

    font-size: 13px;
    font-weight: 600;

    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ======================================================
   AUTOMATION FEATURE SECTION SWITCH
====================================================== */

.automation-feature-section {
    display: none;
}

.automation-feature-section.is-active {
    display: block;
}


/* ======================================================
   APPOINTMENT BOOKING DEMO - DESKTOP
====================================================== */

.booking-panel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;

    width: 100%;
    max-width: 980px;
}

.booking-panel {
    width: 100%;
}

.booking-calendar-panel {
    width: 100%;
    overflow-x: auto;
}

.booking-panel {
    min-height: 560px;
    padding: 32px 34px;

    border: 1px solid rgba(57, 255, 136, 0.32);
    border-radius: 18px;

    background: rgba(0, 20, 10, 0.20);
    backdrop-filter: blur(8px);

    box-shadow:
        0 0 24px rgba(57, 255, 136, 0.10),
        inset 0 0 18px rgba(57, 255, 136, 0.04);
}

.booking-panel-header h2,
.calendar-topbar h2 {
    margin-bottom: 10px;

    font-size: 28px;
    font-weight: 600;

    color: #39ff88;

    text-shadow:
        0 0 12px rgba(57, 255, 136, 0.45);
}

.booking-panel-header p,
.calendar-topbar p {
    margin: 0 0 24px;

    font-size: 15px;
    line-height: 1.55;

    color: rgba(255, 255, 255, 0.62);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.booking-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.booking-field label {
    font-size: 15px;
    font-weight: 600;

    color: rgba(255, 255, 255, 0.92);
}

.booking-field input,
.booking-field select {
    width: 100%;
    height: 48px;

    padding: 0 15px;

    border: 1px solid rgba(57, 255, 136, 0.25);
    border-radius: 12px;

    background: rgba(5, 13, 28, 0.82);

    color: #ffffff;

    font-size: 15px;
    font-family: inherit;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.booking-field input:focus,
.booking-field select:focus {
    border-color: rgba(57, 255, 136, 0.72);
    background: rgba(5, 18, 32, 0.92);

    box-shadow:
        0 0 20px rgba(57, 255, 136, 0.16);
}

.availability-status {
    min-height: 52px;
    padding: 14px 16px;

    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);

    font-size: 14px;
    line-height: 1.45;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.availability-status.is-neutral {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.58);
}

.availability-status.is-available {
    border-color: rgba(57, 255, 136, 0.65);
    background: linear-gradient(90deg, rgba(57, 255, 136, 0.18), rgba(57, 255, 136, 0.05));
    color: #39ff88;

    box-shadow:
        0 0 20px rgba(57, 255, 136, 0.18);
}

.availability-status.is-unavailable {
    border-color: rgba(255, 83, 83, 0.65);
    background: linear-gradient(90deg, rgba(255, 83, 83, 0.18), rgba(255, 83, 83, 0.05));
    color: #ff7373;

    box-shadow:
        0 0 20px rgba(255, 83, 83, 0.14);
}

.booking-submit {
    width: fit-content;
    margin-top: 4px;
}


/* Calendar */

.booking-calendar-panel {
    min-width: 0;
}

.calendar-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;

    margin-bottom: 18px;
}

.barber-switcher {
    display: flex;
    gap: 8px;

    padding: 6px;

    border: 1px solid rgba(57, 255, 136, 0.18);
    border-radius: 999px;

    background: rgba(5, 13, 28, 0.62);
}

.barber-tab {
    height: 36px;
    padding: 0 16px;

    border: 1px solid transparent;
    border-radius: 999px;

    background: transparent;
    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.barber-tab:hover,
.barber-tab.active {
    background: rgba(57, 255, 136, 0.12);
    border-color: rgba(57, 255, 136, 0.42);
    color: #39ff88;

    box-shadow:
        0 0 18px rgba(57, 255, 136, 0.12);
}

.booking-legend {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 13px;
}

.booking-legend span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.legend-dot {
    width: 10px;
    height: 10px;

    border-radius: 999px;
}

.legend-dot.haircut {
    background: #39ff88;
}

.legend-dot.beard {
    background: #44a8ff;
}

.legend-dot.styling {
    background: #c77dff;
}

.weekly-calendar {
    display: grid;
    grid-template-columns: repeat(7, minmax(90px, 1fr));
    gap: 10px;
}

.calendar-day {
    min-height: 410px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;

    background: rgba(5, 13, 28, 0.58);

    overflow: hidden;
}

.calendar-day-header {
    padding: 13px 12px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    background: rgba(255, 255, 255, 0.03);
}

.calendar-day-header strong {
    display: block;

    margin-bottom: 4px;

    font-size: 13px;
    color: #ffffff;
}

.calendar-day-header span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.48);
}

.calendar-slots {
    display: flex;
    flex-direction: column;
}

.calendar-slot {
    position: relative;

    min-height: 36px;
    padding: 5px 8px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.045);

    color: rgba(255, 255, 255, 0.26);

    font-size: 11px;
}

.calendar-appointment {
    display: block;

    margin-top: 4px;
    padding: 7px 8px;

    border-radius: 10px;

    color: #06140b;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;

    box-shadow:
        0 0 16px rgba(0, 0, 0, 0.20);
}

.calendar-appointment small {
    display: block;

    margin-top: 3px;

    font-size: 10px;
    font-weight: 600;

    opacity: 0.82;
}

.calendar-appointment.haircut {
    background: #39ff88;
}

.calendar-appointment.beard {
    background: #44a8ff;
    color: #03101f;
}

.calendar-appointment.styling {
    background: #c77dff;
    color: #16051f;
}

/* ======================================================
   ABOUT PAGE - DESKTOP
====================================================== */

.about-page {
    min-height: 100vh;
    padding: 220px 0 100px;

    background:
        radial-gradient(circle at top left, rgba(9, 68, 131, 0.22), transparent 35%),
        linear-gradient(135deg, #020611 0%, #06111f 55%, #020611 100%);

    color: #ffffff;
}

.about-page-content h1 {
    margin-bottom: 24px;

    font-size: 48px;
    line-height: 1;
    font-weight: 600;

    color: rgba(9, 68, 131, 1);

    text-shadow:
        0 0 14px rgba(9, 68, 131, 0.55),
        0 0 32px rgba(9, 68, 131, 0.28);
}

.about-page-content > p {
    max-width: 850px;
    margin-bottom: 60px;

    font-size: 22px;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.82);
}

.about-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;

    max-width: 1180px;
}

.about-card {
    padding: 34px 36px;

    border: 1px solid rgba(57, 255, 136, 0.32);
    border-radius: 18px;

    background: rgba(0, 20, 10, 0.20);
    backdrop-filter: blur(8px);

    box-shadow:
        0 0 24px rgba(57, 255, 136, 0.10),
        inset 0 0 18px rgba(57, 255, 136, 0.04);
}

.about-card h2 {
    margin-bottom: 16px;

    font-size: 26px;
    font-weight: 600;

    color: #39ff88;

    text-shadow:
        0 0 12px rgba(57, 255, 136, 0.45);
}

.about-card p {
    margin: 0;

    font-size: 17px;
    line-height: 1.65;

    color: rgba(255, 255, 255, 0.82);
}

/* ======================================================
   ABOUT PAGE - DESKTOP
====================================================== */

.about-page {
    min-height: 100vh;
    padding: 220px 0 100px;

    background:
        radial-gradient(circle at top left, rgba(9, 68, 131, 0.22), transparent 35%),
        linear-gradient(135deg, #020611 0%, #06111f 55%, #020611 100%);

    color: #ffffff;
}

.about-page-content h1 {
    margin-bottom: 24px;

    font-size: 48px;
    line-height: 1;
    font-weight: 600;

    color: rgba(9, 68, 131, 1);

    text-shadow:
        0 0 14px rgba(9, 68, 131, 0.55),
        0 0 32px rgba(9, 68, 131, 0.28);
}

.about-page-content > p {
    max-width: 850px;
    margin-bottom: 60px;

    font-size: 22px;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.82);
}

.about-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;

    max-width: 1180px;
}

.about-card {
    padding: 34px 36px;

    border: 1px solid rgba(57, 255, 136, 0.32);
    border-radius: 18px;

    background: rgba(0, 20, 10, 0.20);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow:
        0 0 24px rgba(57, 255, 136, 0.10),
        inset 0 0 18px rgba(57, 255, 136, 0.04);
}

.about-card h2 {
    margin-bottom: 16px;

    font-size: 26px;
    font-weight: 600;

    color: #39ff88;

    text-shadow:
        0 0 12px rgba(57, 255, 136, 0.45);
}

.about-card p {
    margin: 0;

    font-size: 17px;
    line-height: 1.65;

    color: rgba(255, 255, 255, 0.82);
}


/* ======================================================
   ABOUT CEO CARD - DESKTOP
====================================================== */

.about-ceo-card {
    display: flex;
    align-items: center;
    gap: 34px;

    width: 100%;
    max-width: 1180px;

    padding: 34px 36px;
    margin-top: 28px;
    margin-bottom: 0;

    border: 1px solid rgba(57, 255, 136, 0.32);
    border-radius: 18px;

    background: rgba(0, 20, 10, 0.20);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow:
        0 0 24px rgba(57, 255, 136, 0.10),
        inset 0 0 18px rgba(57, 255, 136, 0.04);
}

.about-ceo-photo-wrap {
    width: 145px;
    height: 205px;

    flex: 0 0 145px;

    padding: 4px;
    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            rgba(57, 255, 136, 0.85),
            rgba(9, 68, 131, 0.85)
        );

    box-shadow:
        0 0 26px rgba(57, 255, 136, 0.22);
}

.about-ceo-photo {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border-radius: 999px;
}

.about-ceo-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-ceo-label {
    margin-bottom: 10px;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.55);
}

.about-ceo-info h2 {
    margin: 0 0 10px;

    font-size: 36px;
    line-height: 1.1;
    font-weight: 600;

    color: #39ff88;

    text-shadow:
        0 0 12px rgba(57, 255, 136, 0.45);
}

.about-ceo-info p {
    margin: 0;

    font-size: 21px;
    line-height: 1.4;
    font-weight: 500;

    color: rgba(255, 255, 255, 0.82);
}

/* Extra spacing for employee cards */
.about-employee-card {
    margin-top: 18px;
}

/* ======================================================
   BUSINESS LOCATION FINDER - DESKTOP
====================================================== */

.location-panel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;

    width: 100%;
    max-width: 980px;
}

.location-panel {
    width: 100%;
    min-height: 360px;

    padding: 32px 34px;

    border: 1px solid rgba(57, 255, 136, 0.32);
    border-radius: 18px;

    background: rgba(0, 20, 10, 0.20);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow:
        0 0 24px rgba(57, 255, 136, 0.10),
        inset 0 0 18px rgba(57, 255, 136, 0.04);
}

.location-panel-header h2 {
    margin-bottom: 10px;

    font-size: 28px;
    font-weight: 600;

    color: #39ff88;

    text-shadow:
        0 0 12px rgba(57, 255, 136, 0.45);
}

.location-panel-header p {
    margin: 0 0 24px;

    font-size: 15px;
    line-height: 1.55;

    color: rgba(255, 255, 255, 0.62);
}

.location-search-box {
    display: flex;
    flex-direction: column;
    gap: 9px;

    margin-bottom: 22px;
}

.location-search-box label {
    font-size: 15px;
    font-weight: 600;

    color: rgba(255, 255, 255, 0.92);
}

.location-search-box input {
    width: 100%;
    height: 52px;

    padding: 0 16px;

    border: 1px solid rgba(57, 255, 136, 0.25);
    border-radius: 12px;

    background: rgba(5, 13, 28, 0.82);

    color: #ffffff;

    font-size: 15px;
    font-family: inherit;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.location-search-box input:focus {
    border-color: rgba(57, 255, 136, 0.72);
    background: rgba(5, 18, 32, 0.92);

    box-shadow:
        0 0 20px rgba(57, 255, 136, 0.16);
}

.location-search-box input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.location-result-empty {
    min-height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    border: 1px dashed rgba(57, 255, 136, 0.25);
    border-radius: 14px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}

.location-result-card {
    padding: 22px 24px;

    border: 1px solid rgba(57, 255, 136, 0.38);
    border-radius: 14px;

    background: rgba(5, 13, 28, 0.78);

    box-shadow:
        0 0 22px rgba(57, 255, 136, 0.10),
        inset 0 0 14px rgba(57, 255, 136, 0.04);
}

.location-result-label {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 600;

    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.location-result-card h3 {
    margin: 0 0 12px;

    font-size: 24px;
    font-weight: 600;

    color: #39ff88;

    text-shadow:
        0 0 12px rgba(57, 255, 136, 0.35);
}

.location-result-card p {
    margin: 0 0 18px;

    font-size: 15px;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.82);
}

.location-detail-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;

    margin-bottom: 18px;
}

.location-detail-item {
    padding: 14px 16px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.035);
}

.location-detail-item span {
    display: block;

    margin-bottom: 6px;

    font-size: 12px;
    color: rgba(255, 255, 255, 0.48);
}

.location-detail-item strong {
    display: block;

    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;

    color: rgba(255, 255, 255, 0.88);
    word-break: break-word;
}

.location-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.location-result-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 16px;

    border: 1px solid rgba(57, 255, 136, 0.35);
    border-radius: 999px;

    background: rgba(57, 255, 136, 0.08);

    color: #39ff88;
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.location-result-actions a:hover {
    background: rgba(57, 255, 136, 0.14);
    border-color: rgba(57, 255, 136, 0.65);

    box-shadow:
        0 0 18px rgba(57, 255, 136, 0.16);
}

.location-map-panel {
    padding: 0;
    overflow: hidden;
}

.business-location-map {
    width: 100%;
    min-height: 440px;
    height: 440px;
}

.business-location-autocomplete {
    width: 100%;
}

.business-location-autocomplete gmp-place-autocomplete {
    width: 100%;
}

/* ======================================================
   SERVICES TITLE BLUE STYLE WITHOUT GLOW
====================================================== */

.services-title-box {
    display: inline-block;

    padding: 26px 56px;
    margin-bottom: 32px;

    border: 1px solid rgba(9, 68, 131, 0.75);
    border-radius: 16px;

    background: rgba(9, 68, 131, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow: none;
}

.services-title-box h1 {
    margin: 0;

    font-size: 70px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -2px;

    color: rgba(9, 68, 131, 1);

    text-shadow: none;
}

/* ======================================================
   SERVICES TYPEWRITER TEXT - DESKTOP + MOBILE
====================================================== */

.services-typewriter-text {
    position: relative;
    display: inline-block;

    width: 100%;
    min-height: 3.4em;

    margin: 0;

    color: #39ff88;

    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
}

.services-typewriter-text::after {
    content: "|";

    display: inline-block;

    margin-left: 4px;

    color: #39ff88;

    animation: servicesCursorBlink 0.8s infinite;
}

.services-typewriter-text.is-finished::after {
    opacity: 0;
    animation: none;
}

@keyframes servicesCursorBlink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ======================================================
   SERVICES TYPEWRITER - TABLET
====================================================== */

@media (max-width: 900px) {
    .services-typewriter-text {
        width: 100%;
        min-height: 4.2em;

        font-size: 21px;
        line-height: 1.55;
    }
}

/* ======================================================
   SERVICES TYPEWRITER - MOBILE
====================================================== */

@media (max-width: 520px) {
    .services-typewriter-text {
        width: 100%;
        min-height: 5.8em;

        font-size: 18px;
        line-height: 1.55;
    }

    .services-typewriter-text::after {
        margin-left: 3px;
    }
}

