/* ==========================================================================
   Typography System
   ========================================================================== */

:root {
    --font-body: "Inter", sans-serif;
    --font-heading: "Plus Jakarta Sans", sans-serif;

    /* Type scale */
    --font-size-xs: 0.75rem; /* 12px */
    --font-size-sm: 0.875rem; /* 14px */
    --font-size-base: 1rem; /* 16px */
    --font-size-md: 1.125rem; /* 18px */
    --font-size-lg: 1.25rem; /* 20px */
    --font-size-xl: 1.5rem; /* 24px */
    --font-size-2xl: 1.875rem; /* 30px */
    --font-size-3xl: 2.25rem; /* 36px */
    --font-size-4xl: 3rem; /* 48px */

    /* Heading sizes */
    --font-size-h1: 2rem; /* 40px */
    --font-size-h2: 1.5rem; /* 32px */
    --font-size-h3: 1.25rem; /* 28px */
    --font-size-h4: 1.1rem; /* 24px */
    --font-size-h5: 1.15rem; /* 20px */
    --font-size-h6: 1.025rem; /* 18px */

    /* Line heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-loose: 1.8;

    /* Font weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* Bootstrap overrides */
    --bs-body-font-family: var(--font-body);
    --bs-body-font-size: var(--font-size-base);
    --bs-body-line-height: var(--line-height-normal);
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
}

h5 {
    font-size: var(--font-size-h5);
}

h6 {
    font-size: var(--font-size-h6);
}

h1 em {
    font-family: var(--font-body), serif;
    font-style: italic;
    font-weight: 400;
    color: var(--moss);
    letter-spacing: -0.02em;
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

.hide {
    display: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* --------------------------------------------------------------------------
   Decorative background: two drifting orbs + faint grain overlay
   -------------------------------------------------------------------------- */

body::before,
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

body::before {
    z-index: 1;
    opacity: 0.25;
    background: radial-gradient(circle, var(--moss) 0%, transparent 70%);
    animation: pwp-orb-a 18s ease-in-out infinite alternate;
}

body::after {
    background: radial-gradient(circle, var(--moss-glow) 0%, transparent 70%);
    animation: pwp-orb-b 22s ease-in-out infinite alternate;
}

@keyframes pwp-orb-a {
    0% {
        transform: translate(-10vw, -10vh) scale(1);
    }
    100% {
        transform: translate(20vw, 30vh) scale(1.2);
    }
}

@keyframes pwp-orb-b {
    0% {
        transform: translate(80vw, 60vh) scale(1.1);
    }
    100% {
        transform: translate(50vw, 10vh) scale(0.9);
    }
}

#site-logo {
    font-size: 1rem;
}

#site-logo img {
    width: 50px;
}

.home .page-header .img-fluid {
    max-width: 300px;
}

header .navbar ul.navbar-nav li a {
    color: rgba(var(--bs-light-rgb), var(--bs-text-opacity));
}

header .navbar ul.navbar-nav li:not(.current_page_item) a.active:not(.dropdown-toggle) {
    color: white;
}

footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

footer ul li:not(:last-child) {
    margin-bottom: 10px;
}

footer ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(var(--bs-light-rgb), var(--bs-text-opacity));
    text-decoration: none;
    line-height: 1.4;
}

footer ul li svg {
    width: 20px;
    flex-shrink: 0;
    align-self: flex-start;
    margin-right: 5px;
}

footer ul li a img {
    position: relative;
    top: 4px;
}

#footer-menu-4 ul li a {
    text-decoration: underline;
}

form.contact-form {
    max-width: 400px;
}

.hero {
    position: relative;
    padding: 100px 20px;
    background-image: url("/wp-content/uploads/2025/03/homepage-hero-1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero .row > div {
    z-index: 10;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero a {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
}

.hero a[href="#why-choose-precisionwp"] {
    position: relative;
    top: 4px;
    text-decoration: underline;
}

.carousel-indicators [data-bs-target] {
    background-color: black;
}

.menu-item-my-account a {
    text-decoration: none;
}

.navbar .menu-item {
    position: relative;
}

.icon-dmfwc a::before {
    content: "";
    position: relative;
    top: 5px;
    display: inline-block;
    width: 19px;
    height: 19px;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4gPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4gPHBhdGggc3R5bGU9ImZpbGw6I0ZGNTAyMzsiIGQ9Ik0yNTUuOTk5LDUxMmMtMi45NTQsMC01LjczNy0xLjE0NC03LjgzNS0zLjIyMWwtNDcuMzMyLTQ2Ljg3NmwtNjQuNDM3LDE2LjkyNyBjLTAuOTQ2LDAuMjUtMS45MDMsMC4zNzYtMi44NTcsMC4zNzZjLTQuOTg0LDAtOS4zODctMy4zNzQtMTAuNzA5LTguMjA1bC0xNy41NTktNjQuMjdMNDEsMzg5LjE3MSBjLTUuODYtMS42MDEtOS4zNzItNy42ODctNy44MjktMTMuNTY2bDE2LjkyNy02NC40MzZMMy4yMjIsMjYzLjgzNmMtNC4yNzItNC4zMTktNC4yNzItMTEuMzQ5LDAuMDAyLTE1LjY3bDQ2Ljg3NS00Ny4zMzEgbC0xNi45MjctNjQuNDM3Yy0xLjU0NC01Ljg3OCwxLjk2OS0xMS45NjQsNy44MjktMTMuNTY2bDY0LjI3LTE3LjU1OWwxNy41Ni02NC4yN2MxLjMyLTQuODI4LDUuNzI4LTguMjAxLDEwLjcxNy04LjIwMSBjMC45NTIsMCwxLjkwOSwwLjEyNSwyLjg0MywwLjM3MWw2NC40NDIsMTYuOTI3bDQ3LjMzMy00Ni44NzdDMjUwLjI2NSwxLjE0NSwyNTMuMDQ4LDAsMjU1Ljk5OSwwczUuNzM0LDEuMTQ1LDcuODM1LDMuMjIzIGw0Ny4zMzIsNDYuODc2bDY0LjQzNy0xNi45MjdjMC45MzktMC4yNDcsMS45LTAuMzcyLDIuODU0LTAuMzcyYzQuOTksMCw5LjM5NCwzLjM3MSwxMC43MTEsOC4xOTlsMTcuNTYsNjQuMjcybDY0LjI3LDE3LjU2IGM1Ljg2LDEuNjAxLDkuMzcyLDcuNjg3LDcuODI5LDEzLjU2NmwtMTYuOTI3LDY0LjQzNmw0Ni44NzcsNDcuMzMzYzQuMjcyLDQuMzE5LDQuMjcyLDExLjM0OS0wLjAwMiwxNS42N0w0NjEuOSwzMTEuMTY4IGwxNi45MjcsNjQuNDM3YzEuNTQ0LDUuODc4LTEuOTY5LDExLjk2NC03LjgyOSwxMy41NjZsLTY0LjI3LDE3LjU2bC0xNy41Niw2NC4yN2MtMS4zMTgsNC44MzItNS43MTksOC4yMDUtMTAuNzAzLDguMjA1IGMtMC45NTUsMC0xLjkxNi0wLjEyNi0yLjg1NC0wLjM3NGwtNjQuNDQ1LTE2LjkyOGwtNDcuMzMzLDQ2Ljg3N0MyNjEuNzM2LDUxMC44NTcsMjU4Ljk1Myw1MTIsMjU1Ljk5OSw1MTJ6Ij48L3BhdGg+IDxwYXRoIHN0eWxlPSJmaWxsOiNDRDJBMDA7IiBkPSJNNDYxLjkwMiwyMDAuODM0bDE2LjkyNy02NC40MzZjMS41NDQtNS44NzktMS45NjktMTEuOTY1LTcuODI5LTEzLjU2NmwtNjQuMjctMTcuNTZMMzg5LjE2OSw0MSBjLTEuMzE3LTQuODI3LTUuNzIxLTguMTk5LTEwLjcxMS04LjE5OWMtMC45NTQsMC0xLjkxNCwwLjEyNS0yLjg1NCwwLjM3MkwzMTEuMTY3LDUwLjFMMjYzLjgzNSwzLjIyMyBDMjYxLjczNSwxLjE0NSwyNTkuMzQsMCwyNTYuMDAxLDB2NTEyYzMuMzM5LDAsNS43MzYtMS4xNDQsNy44MzQtMy4yMjFsNDcuMzMzLTQ2Ljg3N2w2NC40NDUsMTYuOTI4IGMwLjkzOSwwLjI0OCwxLjg5OSwwLjM3NCwyLjg1NCwwLjM3NGM0Ljk4NCwwLDkuMzg1LTMuMzc0LDEwLjcwMy04LjIwNWwxNy41Ni02NC4yN2w2NC4yNy0xNy41NiBjNS44Ni0xLjYwMSw5LjM3Mi03LjY4Nyw3LjgyOS0xMy41NjZsLTE2LjkyNy02NC40MzdsNDYuODc1LTQ3LjMzMWM0LjI3NC00LjMyMSw0LjI3NC0xMS4zNTIsMC4wMDItMTUuNjdMNDYxLjkwMiwyMDAuODM0eiI+PC9wYXRoPiA8cGF0aCBzdHlsZT0iZmlsbDojRkZGRkZGOyIgZD0iTTE4OS4yMTcsMjQ0Ljg3MWMtMzAuNjg0LDAtNTUuNjUyLTI0Ljk2OC01NS42NTItNTUuNjUyczI0Ljk2OC01NS42NTIsNTUuNjUyLTU1LjY1MiBzNTUuNjUyLDI0Ljk2OCw1NS42NTIsNTUuNjUyUzIxOS45MDEsMjQ0Ljg3MSwxODkuMjE3LDI0NC44NzF6IE0xODkuMjE3LDE2Ni45NThjLTEyLjI3NywwLTIyLjI2MSw5Ljk4NC0yMi4yNjEsMjIuMjYxIHM5Ljk4NCwyMi4yNjEsMjIuMjYxLDIyLjI2MWMxMi4yNzcsMCwyMi4yNjEtOS45ODQsMjIuMjYxLTIyLjI2MVMyMDEuNDk0LDE2Ni45NTgsMTg5LjIxNywxNjYuOTU4eiI+PC9wYXRoPiA8cGF0aCBzdHlsZT0iZmlsbDojRDFFN0Y4OyIgZD0iTTMyMi43ODIsMzc4LjQzNWMtMzAuNjg0LDAtNTUuNjUyLTI0Ljk2OC01NS42NTItNTUuNjUyczI0Ljk2OC01NS42NTIsNTUuNjUyLTU1LjY1MiBzNTUuNjUyLDI0Ljk2OCw1NS42NTIsNTUuNjUyUzM1My40NjYsMzc4LjQzNSwzMjIuNzgyLDM3OC40MzV6IE0zMjIuNzgyLDMwMC41MjNjLTEyLjI3NywwLTIyLjI2MSw5Ljk4NC0yMi4yNjEsMjIuMjYxIGMwLDEyLjI3Nyw5Ljk4NCwyMi4yNjEsMjIuMjYxLDIyLjI2MWMxMi4yNzcsMCwyMi4yNjEtOS45ODQsMjIuMjYxLTIyLjI2MUMzNDUuMDQzLDMxMC41MDcsMzM1LjA1OSwzMDAuNTIzLDMyMi43ODIsMzAwLjUyM3oiPjwvcGF0aD4gPHBhdGggc3R5bGU9ImZpbGw6I0ZGRkZGRjsiIGQ9Ik0xNzguMDg3LDM1MC42MDljLTQuMjcyLDAtOC41NDQtMS42MzEtMTEuODA0LTQuODkyYy02LjUyMS02LjUxNi02LjUyMS0xNy4wOTIsMC0yMy42MDkgbDE1NS44MjUtMTU1LjgyNWM2LjUyMS02LjUyMSwxNy4wODctNi41MjEsMjMuNjA5LDBjNi41MjEsNi41MTYsNi41MjEsMTcuMDkyLDAsMjMuNjA5TDE4OS44OTIsMzQ1LjcxOCBDMTg2LjYzLDM0OC45OCwxODIuMzU5LDM1MC42MDksMTc4LjA4NywzNTAuNjA5eiI+PC9wYXRoPiA8cGF0aCBzdHlsZT0iZmlsbDojRDFFN0Y4OyIgZD0iTTMyMi4xMDgsMTY2LjI4NWwtNjYuMTA4LDY2LjEwOXY0Ny4yMTdsODkuNzE2LTg5LjcxNmM2LjUyMS02LjUxNiw2LjUyMS0xNy4wOTIsMC0yMy42MDkgQzMzOS4xOTYsMTU5Ljc2MywzMjguNjMsMTU5Ljc2MywzMjIuMTA4LDE2Ni4yODV6Ij48L3BhdGg+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDwvc3ZnPiA=);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
}

footer .icon-dmfwc a::before {
    content: "";
    position: relative;
    top: 2px;
    display: inline-block;
    width: 27px;
    height: 19px;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4gPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4gPHBhdGggc3R5bGU9ImZpbGw6I0ZGNTAyMzsiIGQ9Ik0yNTUuOTk5LDUxMmMtMi45NTQsMC01LjczNy0xLjE0NC03LjgzNS0zLjIyMWwtNDcuMzMyLTQ2Ljg3NmwtNjQuNDM3LDE2LjkyNyBjLTAuOTQ2LDAuMjUtMS45MDMsMC4zNzYtMi44NTcsMC4zNzZjLTQuOTg0LDAtOS4zODctMy4zNzQtMTAuNzA5LTguMjA1bC0xNy41NTktNjQuMjdMNDEsMzg5LjE3MSBjLTUuODYtMS42MDEtOS4zNzItNy42ODctNy44MjktMTMuNTY2bDE2LjkyNy02NC40MzZMMy4yMjIsMjYzLjgzNmMtNC4yNzItNC4zMTktNC4yNzItMTEuMzQ5LDAuMDAyLTE1LjY3bDQ2Ljg3NS00Ny4zMzEgbC0xNi45MjctNjQuNDM3Yy0xLjU0NC01Ljg3OCwxLjk2OS0xMS45NjQsNy44MjktMTMuNTY2bDY0LjI3LTE3LjU1OWwxNy41Ni02NC4yN2MxLjMyLTQuODI4LDUuNzI4LTguMjAxLDEwLjcxNy04LjIwMSBjMC45NTIsMCwxLjkwOSwwLjEyNSwyLjg0MywwLjM3MWw2NC40NDIsMTYuOTI3bDQ3LjMzMy00Ni44NzdDMjUwLjI2NSwxLjE0NSwyNTMuMDQ4LDAsMjU1Ljk5OSwwczUuNzM0LDEuMTQ1LDcuODM1LDMuMjIzIGw0Ny4zMzIsNDYuODc2bDY0LjQzNy0xNi45MjdjMC45MzktMC4yNDcsMS45LTAuMzcyLDIuODU0LTAuMzcyYzQuOTksMCw5LjM5NCwzLjM3MSwxMC43MTEsOC4xOTlsMTcuNTYsNjQuMjcybDY0LjI3LDE3LjU2IGM1Ljg2LDEuNjAxLDkuMzcyLDcuNjg3LDcuODI5LDEzLjU2NmwtMTYuOTI3LDY0LjQzNmw0Ni44NzcsNDcuMzMzYzQuMjcyLDQuMzE5LDQuMjcyLDExLjM0OS0wLjAwMiwxNS42N0w0NjEuOSwzMTEuMTY4IGwxNi45MjcsNjQuNDM3YzEuNTQ0LDUuODc4LTEuOTY5LDExLjk2NC03LjgyOSwxMy41NjZsLTY0LjI3LDE3LjU2bC0xNy41Niw2NC4yN2MtMS4zMTgsNC44MzItNS43MTksOC4yMDUtMTAuNzAzLDguMjA1IGMtMC45NTUsMC0xLjkxNi0wLjEyNi0yLjg1NC0wLjM3NGwtNjQuNDQ1LTE2LjkyOGwtNDcuMzMzLDQ2Ljg3N0MyNjEuNzM2LDUxMC44NTcsMjU4Ljk1Myw1MTIsMjU1Ljk5OSw1MTJ6Ij48L3BhdGg+IDxwYXRoIHN0eWxlPSJmaWxsOiNDRDJBMDA7IiBkPSJNNDYxLjkwMiwyMDAuODM0bDE2LjkyNy02NC40MzZjMS41NDQtNS44NzktMS45NjktMTEuOTY1LTcuODI5LTEzLjU2NmwtNjQuMjctMTcuNTZMMzg5LjE2OSw0MSBjLTEuMzE3LTQuODI3LTUuNzIxLTguMTk5LTEwLjcxMS04LjE5OWMtMC45NTQsMC0xLjkxNCwwLjEyNS0yLjg1NCwwLjM3MkwzMTEuMTY3LDUwLjFMMjYzLjgzNSwzLjIyMyBDMjYxLjczNSwxLjE0NSwyNTkuMzQsMCwyNTYuMDAxLDB2NTEyYzMuMzM5LDAsNS43MzYtMS4xNDQsNy44MzQtMy4yMjFsNDcuMzMzLTQ2Ljg3N2w2NC40NDUsMTYuOTI4IGMwLjkzOSwwLjI0OCwxLjg5OSwwLjM3NCwyLjg1NCwwLjM3NGM0Ljk4NCwwLDkuMzg1LTMuMzc0LDEwLjcwMy04LjIwNWwxNy41Ni02NC4yN2w2NC4yNy0xNy41NiBjNS44Ni0xLjYwMSw5LjM3Mi03LjY4Nyw3LjgyOS0xMy41NjZsLTE2LjkyNy02NC40MzdsNDYuODc1LTQ3LjMzMWM0LjI3NC00LjMyMSw0LjI3NC0xMS4zNTIsMC4wMDItMTUuNjdMNDYxLjkwMiwyMDAuODM0eiI+PC9wYXRoPiA8cGF0aCBzdHlsZT0iZmlsbDojRkZGRkZGOyIgZD0iTTE4OS4yMTcsMjQ0Ljg3MWMtMzAuNjg0LDAtNTUuNjUyLTI0Ljk2OC01NS42NTItNTUuNjUyczI0Ljk2OC01NS42NTIsNTUuNjUyLTU1LjY1MiBzNTUuNjUyLDI0Ljk2OCw1NS42NTIsNTUuNjUyUzIxOS45MDEsMjQ0Ljg3MSwxODkuMjE3LDI0NC44NzF6IE0xODkuMjE3LDE2Ni45NThjLTEyLjI3NywwLTIyLjI2MSw5Ljk4NC0yMi4yNjEsMjIuMjYxIHM5Ljk4NCwyMi4yNjEsMjIuMjYxLDIyLjI2MWMxMi4yNzcsMCwyMi4yNjEtOS45ODQsMjIuMjYxLTIyLjI2MVMyMDEuNDk0LDE2Ni45NTgsMTg5LjIxNywxNjYuOTU4eiI+PC9wYXRoPiA8cGF0aCBzdHlsZT0iZmlsbDojRDFFN0Y4OyIgZD0iTTMyMi43ODIsMzc4LjQzNWMtMzAuNjg0LDAtNTUuNjUyLTI0Ljk2OC01NS42NTItNTUuNjUyczI0Ljk2OC01NS42NTIsNTUuNjUyLTU1LjY1MiBzNTUuNjUyLDI0Ljk2OCw1NS42NTIsNTUuNjUyUzM1My40NjYsMzc4LjQzNSwzMjIuNzgyLDM3OC40MzV6IE0zMjIuNzgyLDMwMC41MjNjLTEyLjI3NywwLTIyLjI2MSw5Ljk4NC0yMi4yNjEsMjIuMjYxIGMwLDEyLjI3Nyw5Ljk4NCwyMi4yNjEsMjIuMjYxLDIyLjI2MWMxMi4yNzcsMCwyMi4yNjEtOS45ODQsMjIuMjYxLTIyLjI2MUMzNDUuMDQzLDMxMC41MDcsMzM1LjA1OSwzMDAuNTIzLDMyMi43ODIsMzAwLjUyM3oiPjwvcGF0aD4gPHBhdGggc3R5bGU9ImZpbGw6I0ZGRkZGRjsiIGQ9Ik0xNzguMDg3LDM1MC42MDljLTQuMjcyLDAtOC41NDQtMS42MzEtMTEuODA0LTQuODkyYy02LjUyMS02LjUxNi02LjUyMS0xNy4wOTIsMC0yMy42MDkgbDE1NS44MjUtMTU1LjgyNWM2LjUyMS02LjUyMSwxNy4wODctNi41MjEsMjMuNjA5LDBjNi41MjEsNi41MTYsNi41MjEsMTcuMDkyLDAsMjMuNjA5TDE4OS44OTIsMzQ1LjcxOCBDMTg2LjYzLDM0OC45OCwxODIuMzU5LDM1MC42MDksMTc4LjA4NywzNTAuNjA5eiI+PC9wYXRoPiA8cGF0aCBzdHlsZT0iZmlsbDojRDFFN0Y4OyIgZD0iTTMyMi4xMDgsMTY2LjI4NWwtNjYuMTA4LDY2LjEwOXY0Ny4yMTdsODkuNzE2LTg5LjcxNmM2LjUyMS02LjUxNiw2LjUyMS0xNy4wOTIsMC0yMy42MDkgQzMzOS4xOTYsMTU5Ljc2MywzMjguNjMsMTU5Ljc2MywzMjIuMTA4LDE2Ni4yODV6Ij48L3BhdGg+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDxnPiA8L2c+IDwvc3ZnPiA=);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 0;
}

.icon-adminease a::before {
    content: "";
    position: relative;
    top: 2px;
    display: inline-block;
    width: 19px;
    height: 19px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg width='800px' height='800px' viewBox='-1 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Group_29' data-name='Group 29' transform='translate(-127 -339)'%3E%3Ccircle id='Ellipse_3' data-name='Ellipse 3' cx='4' cy='4' r='4' transform='translate(147 361)' fill='%237d50f9'/%3E%3Cg id='Group_28' data-name='Group 28'%3E%3Cpath id='Path_33' data-name='Path 33' d='M151,354a11,11,0,1,0,11,11A11.013,11.013,0,0,0,151,354Zm0,20a9,9,0,1,1,9-9A9.01,9.01,0,0,1,151,374Z' fill='%23000000'/%3E%3Cpath id='Path_34' data-name='Path 34' d='M170,361h-2.484a16.81,16.81,0,0,0-2.026-4.833l1.774-1.773a3.005,3.005,0,0,0,0-4.244l-1.414-1.414a3,3,0,0,0-4.243,0l-1.773,1.774A16.809,16.809,0,0,0,155,348.484V346a3,3,0,0,0-3-3h-2a3,3,0,0,0-3,3v2.484A17.117,17.117,0,0,0,134.484,361H132a3,3,0,0,0-3,3v2a3,3,0,0,0,3,3h2.484a16.81,16.81,0,0,0,2.026,4.833l-1.774,1.773a3.005,3.005,0,0,0,0,4.244l1.414,1.414a3,3,0,0,0,4.243,0l1.773-1.774A16.809,16.809,0,0,0,147,381.516V384a3,3,0,0,0,3,3h2a3,3,0,0,0,3-3v-2.484a16.809,16.809,0,0,0,4.833-2.026l1.773,1.774a3,3,0,0,0,4.243,0l1.415-1.414a3.005,3.005,0,0,0,0-4.244l-1.773-1.773A16.81,16.81,0,0,0,167.516,369H170a3,3,0,0,0,3-3v-2A3,3,0,0,0,170,361Zm-6.979-10.85a1,1,0,0,1,1.414,0l1.414,1.414a1,1,0,0,1,0,1.415l-1.521,1.521a17.274,17.274,0,0,0-2.828-2.828Zm-24.042,29.7a1,1,0,0,1-1.414,0l-1.414-1.414a1,1,0,0,1,0-1.415l1.521-1.521a17.274,17.274,0,0,0,2.828,2.828Zm26.87-2.829a1,1,0,0,1,0,1.415l-1.414,1.414a1,1,0,0,1-1.414,0l-1.522-1.522a17.24,17.24,0,0,0,2.829-2.828ZM171,366a1,1,0,0,1-1,1h-4.119l-.154.813a15.08,15.08,0,0,1-11.914,11.914l-.813.154V384a1,1,0,0,1-1,1h-2a1,1,0,0,1-1-1v-4.119l-.813-.154a15.08,15.08,0,0,1-11.914-11.914l-.154-.813H132a1,1,0,0,1-1-1v-2a1,1,0,0,1,1-1h4.119l.154-.813a15.08,15.08,0,0,1,11.914-11.914l.813-.154V346a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1v4.119l.813.154a15.08,15.08,0,0,1,11.914,11.914l.154.813H170a1,1,0,0,1,1,1Z' fill='%23000000'/%3E%3Cpath id='Path_35' data-name='Path 35' d='M139,345a6,6,0,1,0-6,6A6.006,6.006,0,0,0,139,345Zm-10,0a4,4,0,1,1,4,4A4,4,0,0,1,129,345Z' fill='%23000000'/%3E%3Ccircle id='Ellipse_4' data-name='Ellipse 4' cx='2' cy='2' r='2' transform='translate(131 343)' fill='%237d50f9'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
}

footer .icon-adminease a::before {
    content: "";
    position: relative;
    top: 2px;
    display: inline-block;
    width: 19px;
    height: 19px;
    background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22800px%22%20height%3D%22800px%22%20viewBox%3D%22-1%200%2048%2048%22%3E%3Cg%20id%3D%22Group_29%22%20data-name%3D%22Group%2029%22%20transform%3D%22translate(-127%20-339)%22%3E%3Ccircle%20id%3D%22Ellipse_3%22%20data-name%3D%22Ellipse%203%22%20cx%3D%224%22%20cy%3D%224%22%20r%3D%224%22%20transform%3D%22translate(147%20361)%22%20fill%3D%22%237d50f9%22%3E%3C%2Fcircle%3E%3Cg%20id%3D%22Group_28%22%20data-name%3D%22Group%2028%22%3E%3Cpath%20id%3D%22Path_33%22%20data-name%3D%22Path%2033%22%20d%3D%22M151%2C354a11%2C11%2C0%2C1%2C0%2C11%2C11A11.013%2C11.013%2C0%2C0%2C0%2C151%2C354Zm0%2C20a9%2C9%2C0%2C1%2C1%2C9-9A9.01%2C9.01%2C0%2C0%2C1%2C151%2C374Z%22%20fill%3D%22%23ffffff%22%3E%3C%2Fpath%3E%3Cpath%20id%3D%22Path_34%22%20data-name%3D%22Path%2034%22%20d%3D%22M170%2C361h-2.484a16.81%2C16.81%2C0%2C0%2C0-2.026-4.833l1.774-1.773a3.005%2C3.005%2C0%2C0%2C0%2C0-4.244l-1.414-1.414a3%2C3%2C0%2C0%2C0-4.243%2C0l-1.773%2C1.774A16.809%2C16.809%2C0%2C0%2C0%2C155%2C348.484V346a3%2C3%2C0%2C0%2C0-3-3h-2a3%2C3%2C0%2C0%2C0-3%2C3v2.484A17.117%2C17.117%2C0%2C0%2C0%2C134.484%2C361H132a3%2C3%2C0%2C0%2C0-3%2C3v2a3%2C3%2C0%2C0%2C0%2C3%2C3h2.484a16.81%2C16.81%2C0%2C0%2C0%2C2.026%2C4.833l-1.774%2C1.773a3.005%2C3.005%2C0%2C0%2C0%2C0%2C4.244l1.414%2C1.414a3%2C3%2C0%2C0%2C0%2C4.243%2C0l1.773-1.774A16.809%2C16.809%2C0%2C0%2C0%2C147%2C381.516V384a3%2C3%2C0%2C0%2C0%2C3%2C3h2a3%2C3%2C0%2C0%2C0%2C3-3v-2.484a16.809%2C16.809%2C0%2C0%2C0%2C4.833-2.026l1.773%2C1.774a3%2C3%2C0%2C0%2C0%2C4.243%2C0l1.415-1.414a3.005%2C3.005%2C0%2C0%2C0%2C0-4.244l-1.773-1.773A16.81%2C16.81%2C0%2C0%2C0%2C167.516%2C369H170a3%2C3%2C0%2C0%2C0%2C3-3v-2A3%2C3%2C0%2C0%2C0%2C170%2C361Zm-6.979-10.85a1%2C1%2C0%2C0%2C1%2C1.414%2C0l1.414%2C1.414a1%2C1%2C0%2C0%2C1%2C0%2C1.415l-1.521%2C1.521a17.274%2C17.274%2C0%2C0%2C0-2.828-2.828Zm-24.042%2C29.7a1%2C1%2C0%2C0%2C1-1.414%2C0l-1.414-1.414a1%2C1%2C0%2C0%2C1%2C0-1.415l1.521-1.521a17.274%2C17.274%2C0%2C0%2C0%2C2.828%2C2.828Zm26.87-2.829a1%2C1%2C0%2C0%2C1%2C0%2C1.415l-1.414%2C1.414a1%2C1%2C0%2C0%2C1-1.414%2C0l-1.522-1.522a17.24%2C17.24%2C0%2C0%2C0%2C2.829-2.828ZM171%2C366a1%2C1%2C0%2C0%2C1-1%2C1h-4.119l-.154.813a15.08%2C15.08%2C0%2C0%2C1-11.914%2C11.914l-.813.154V384a1%2C1%2C0%2C0%2C1-1%2C1h-2a1%2C1%2C0%2C0%2C1-1-1v-4.119l-.813-.154a15.08%2C15.08%2C0%2C0%2C1-11.914-11.914l-.154-.813H132a1%2C1%2C0%2C0%2C1-1-1v-2a1%2C1%2C0%2C0%2C1%2C1-1h4.119l.154-.813a15.08%2C15.08%2C0%2C0%2C1%2C11.914-11.914l.813-.154V346a1%2C1%2C0%2C0%2C1%2C1-1h2a1%2C1%2C0%2C0%2C1%2C1%2C1v4.119l.813.154a15.08%2C15.08%2C0%2C0%2C1%2C11.914%2C11.914l.154.813H170a1%2C1%2C0%2C0%2C1%2C1%2C1Z%22%20fill%3D%22%23ffffff%22%3E%3C%2Fpath%3E%3Cpath%20id%3D%22Path_35%22%20data-name%3D%22Path%2035%22%20d%3D%22M139%2C345a6%2C6%2C0%2C1%2C0-6%2C6A6.006%2C6.006%2C0%2C0%2C0%2C139%2C345Zm-10%2C0a4%2C4%2C0%2C1%2C1%2C4%2C4A4%2C4%2C0%2C0%2C1%2C129%2C345Z%22%20fill%3D%22%23ffffff%22%3E%3C%2Fpath%3E%3Ccircle%20id%3D%22Ellipse_4%22%20data-name%3D%22Ellipse%204%22%20cx%3D%222%22%20cy%3D%222%22%20r%3D%222%22%20transform%3D%22translate(131%20343)%22%20fill%3D%22%237d50f9%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 0;
}

.testimonial-thumbnail {
    max-height: 100px;
    border-radius: 0 !important;
}

.table-tickets th:nth-of-type(1) {
    width: 10%;
}

.table-tickets th:nth-of-type(2) {
    width: 40%;
}

.table-tickets th:nth-of-type(3),
.table-tickets th:nth-of-type(5) {
    width: 10%;
}

.table-tickets th:nth-of-type(4) {
    width: 20%;
}

.user-avatar img {
    width: 40px;
    height: 40px;
}

.required {
    color: red;
}

.woocommerce-view-ticket .avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.woocommerce-view-ticket .reply-content img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    cursor: pointer;
}

#modal-ticket-attachments .btn-close {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    cursor: pointer;
}

.woocommerce-checkout #modal-checkout-login-register .modal-body .row.my-3 > .col-md-6:last-child,
.woocommerce-checkout #modal-checkout-login-register .modal-body .row.my-3 h2 {
    display: none;
}

ul.payment_methods label[for="payment_method_ppcp"] {
    display: none;
}

.payment_method_ppcp,
.wc-ppcp-checkout-container {
    max-width: 400px;
}

.order-item-meta-list {
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.order-item-meta-list li:not(:last-child) {
    margin-bottom: 5px;
}

.order-item-meta-list li p {
    margin: 0;
    font-size: 0.85rem;
}

.link-underline-none {
    text-decoration: none;
}

.precisionwp-plugin-icon-box .elementor-image-box-title {
    margin: 0 !important;
}

/* Main container */
.select2-container--default {
    width: 100% !important;
}

/* Input area styling */
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    display: block;
    width: 100%;
    padding: .375rem 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    min-height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: .75rem;
    padding-right: .75rem;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Focus state */
.select2-container--default.select2-container--focus .select2-selection {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Dropdown styling */
.select2-container--default .select2-results__option {
    padding: .375rem .75rem;
}

.select2-container--default .select2-results__option--highlighted {
    background-color: var(--bs-light);
    color: var(--bs-dark);
}

.select2-container--default .select2-dropdown {
    border: var(--bs-border-width) solid var(--bs-border-color);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Arrow icon */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: .75rem;
}

select:required:invalid + .select2 .select2-selection {
    border-color: #dc3545 !important;
}

select:required:valid + .select2 .select2-selection {
    border-color: #198754 !important;
}

.featured-list-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

#testimonial-carousel .carousel-indicators {
    margin: 15px auto 0 auto;
}

#dmfwc-plugin {
    position: relative;
    overflow: hidden;
    background-image: url(https://precisionwp.net/wp-content/uploads/2025/07/DALL·E-2024-03-14-10.17.43-Create-an-image-of-vibrant-neon-lights-in-space-stretching-across-the-vastness-of-the-cosmos.-The-neon-lights-should-be-vivid-featuring-a-spectrum-o.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#adminease-plugin {
    position: relative;
    overflow: hidden;
    background-image: url(https://precisionwp.net/wp-content/uploads/2025/07/DALL·E-2024-03-14-10.17.23-Create-an-image-of-vibrant-neon-lights-in-space-stretching-across-the-vastness-of-the-cosmos.-The-neon-lights-should-be-vivid-featuring-a-spectrum-o.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

footer ul.sub-menu {
    margin-top: 10px;
    margin-left: 10px;
}

.woocommerce-checkout .login-register-wrapper {
    display: none;
}

.woocommerce-checkout .login-register-wrapper .col-md-6:last-child {
    display: none;
}

.gallery-wrapper {
    position: relative;
}

.gallery-wrapper .onsale {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 10;
    padding: 5px;
    border: none;
    border-radius: 5px;
    background-color: rgba(var(--bs-link-color-rgb));
    color: white;
    font-size: 14px;
    line-height: 1;
}

.header-cart-link {
    margin: 0 15px;
    text-decoration: none;
}

#wc-officeguy-cc-form {
    margin: 20px auto;
}

#wc-officeguy-cc-form label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

#wc-officeguy-cc-form .required {
    color: #d73a49;
    margin-left: 3px;
}

.og-token-form input[type="tel"],
.og-token-form select,
.og-payment-form input[type="tel"],
.og-payment-form select {
    width: auto;
    max-width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.payment_box.payment_method_officeguy input[type="radio"] {
    display: none;
}

.payment_box.payment_method_officeguy > .wc-saved-payment-methods {
    padding: 0 0 0 20px;
}

.woocommerce-error.og-errors {
    color: #d73a49;
    background: #ffebe9;
    border: 1px solid #d73a49;
    padding: 8px 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 13px;
}

/* Clearfix style for .og-clear */
#wc-officeguy-cc-form .og-clear::after {
    content: "";
    display: table;
    clear: both;
}

#payment label {
    cursor: pointer;
}

input[name="wc-officeguy-payment-token"]:checked + label {
    font-weight: 700;
    cursor: pointer;
}

.tutorials .tutorial .img-fluid {
    width: 100%;
    border-top-left-radius: var(--bs-border-radius);
    border-bottom-left-radius: var(--bs-border-radius);
}

.tutorials .tutorial .card-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
}

.tutorials .tutorial .pills {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 10;
}

footer h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
}

footer li,
footer a {
    font-size: var(--font-size-sm);
}

/* Free vs Pro Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 16px;
    text-align: left;
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden; /* Ensures the border-radius clips the corners */
}

.comparison-table thead tr {
    background-color: #f8f9fa;
    color: #2c3338; /* Standard WordPress dark gray */
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #eeeeee;
    vertical-align: middle;
}

/* Remove bottom border on the last row */
.comparison-table tbody tr:last-of-type td {
    border-bottom: none;
}

/* Subtle hover effect for rows */
.comparison-table tbody tr:hover {
    background-color: #fafafa;
}

/* Highlight the Pro column (3rd column) to make it stand out */
.comparison-table th:nth-child(3),
.comparison-table td:nth-child(3) {
    background-color: #f0f8ff; /* Very light blue tint */
}

.gallery-carousel .carousel-item a {
    cursor: zoom-in;
}

.gallery-carousel .carousel-control-prev-icon,
.gallery-carousel .carousel-control-next-icon {
    filter: invert(1);
}

.single-product .product .tab-content h2.accordion-header br,
.single-product .product .tab-content h3.accordion-header br,
.single-product .product .tab-content .accordion-item p:empty {
    display: none;
}

.single-product .product .tab-content .accordion-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Make mobile viewing easier */
@media screen and (max-width: 600px) {
    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 14px;
    }
}

@media ( max-width: 767px ) {
    :root {
        --font-size-h1: 1.8rem; /* 32px */
        --font-size-h2: 1.35rem; /* 28px */
        --font-size-h3: 1.2rem; /* 24px */
        --font-size-h4: 1.15rem; /* 20px */
        --font-size-h5: 1.025rem; /* 18px */
        --font-size-h6: 1rem; /* 16px */
    }
}

@media (max-width: 1366px) {
    .w-50 {
        width: 75% !important;
    }
}

@media (max-width: 1280px) {
    .tutorials .tutorial .card-title {
        font-size: var(--font-size-md);
    }
}

@media (max-width: 991px) {
    .table-tickets th:nth-of-type(1),
    .table-tickets th:nth-of-type(2),
    .table-tickets th:nth-of-type(3),
    .table-tickets th:nth-of-type(4),
    .table-tickets th:nth-of-type(5) {
        width: auto;
    }

    .table-tickets thead {
        display: none;
    }

    .table-tickets,
    .table-tickets tbody,
    .table-tickets tr,
    .table-tickets td {
        display: block;
        width: 100%;
    }

    .table-tickets tr {
        margin-bottom: 15px;
        border: 1px solid #dddddd;
    }

    .table-tickets td {
        text-align: right;
        position: relative;
        border-bottom: 1px solid #dddddd;
    }

    .table-tickets td::before {
        content: attr(data-label);
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }

    .table-tickets td:last-child {
        border-bottom: 0;
    }

    .w-50,
    .w-75 {
        width: 100% !important;
    }

    .mobile-mt-0 {
        margin-top: 0 !important;
    }

    .px-4 {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }

    .py-4 {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    .nav-tabs .nav-link.active {
        border: 1px solid var(--bs-border-color);
        border-radius: 6px;
    }

    .woocommerce-MyAccount-navigation {
        margin-bottom: 20px;
    }

    ul.nav.nav-tabs {
        border-bottom: 0;
    }

    .single-product .product ul.nav.nav-tabs {
        margin-top: 30px;
    }

    .woocommerce-MyAccount-content {
        border-top: 1px solid var(--bs-border-color);
    }

    .hero {
        position: relative;
        padding: 30px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.25rem;
    }

    .hero a {
        font-size: 1rem;
    }

    .navbar {
        padding: 15px 0 !important;
    }

    .navbar-toggler {
        order: 3;
    }

    .header-cart-link {
        order: 2;
        flex-grow: 1;
        margin-left: 0;
        margin-right: 15px;
        text-align: right;
    }

    .row > .p-4 {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .row > .p-5 {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .post-navigation .list-group-horizontal {
        flex-direction: column;
    }

    .post-navigation .list-group-horizontal .list-group-item {
        border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
        border-radius: var(--bs-list-group-border-radius) !important;
    }

    .single-product .variations_form.cart.card {
        margin-top: 30px;
    }

    .list-group-horizontal {
        flex-direction: column;
    }

    .list-group-horizontal .list-group-item {
        border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color) !important;
        border-radius: var(--bs-list-group-border-radius) !important;
    }

    .tutorials .tutorial .img-fluid {
        border-top-left-radius: var(--bs-border-radius);
        border-bottom-left-radius: 0;
        border-top-right-radius: var(--bs-border-radius);
    }
}


/* New */
:root {
    --font-jakarta: 'Plus Jakarta One', sans-serif;
    --font-instrument: 'Instrument Serif', sans-serif;
    --ink: #e8f0ea;
    --ink-2: #c4d0c8;
    --muted: #8a9b90;
    --muted-2: #6a7d72;
    --cream: #f2f7f3;
    --cream-2: #dbe5dd;
    --paper: #0d1411;
    --surface: #141c18;
    --surface-2: #1a2520;
    --line: #24312b;
    --line-2: #2e3d36;
    --moss: #4ade80;
    --moss-2: #22c55e;
    --moss-glow: #86efac;
    --moss-deep: #166534;
    --citron: #d9f99d;
    --rust: #f97316;
}

body.elementor-page .post-navigation,
body.elementor-page .site-main section.page-header,
body.elementor-page .site-main .page-content > .container > .row:first-child {
    display: none;
}

body.elementor-page .site-main .page-content,
body.elementor-page .site-main .page-content > .container {
    width: 100% !important;
    max-width: 100% !important;
}

body.elementor-page .site-main .page-content > .container .post-content {
    margin-top: 0 !important;
}

body.elementor-page .site-main .page-content > .container .col-xs-12 {
    padding: 0 !important;
}

body.elementor-page .site-main .page-content > .container .row {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

header nav.elementor-nav-menu--dropdown,
header .elementor-sticky--active.elementor-sticky--effects {
    background: rgba(13, 20, 17, 0.78) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: backdrop-filter .3s ease, background .3s ease, border-color .3s ease;
    border-bottom: 1px solid var(--line);
}

body.elementor-page .precisionwp-logo figure a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #141c18;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: 0 6px 18px -6px rgba(0, 0, 0, .6), inset 0 0 0 1px rgba(74, 222, 128, .08);
}

.precisionwp-hero-title {
    font-family: var(--font-jakarta), serif;
    font-weight: 500;
    font-style: normal;
    line-height: 0.98;
    letter-spacing: -0.035em;
    max-width: 16ch;
    margin-bottom: 24px;
    color: var(--ink);
}

.hero-owl-inner {
    position: relative;
    width: 100%;
    height: 100%;
    animation: owlBob 6s ease-in-out infinite;
}

.hero-owl-ring {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    border: 1px dashed rgba(74, 222, 128, .3);
    animation: spin 40s linear infinite;
}

.hero-owl-ring::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--moss);
    border-radius: 50%;
}

.hero-owl img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(74, 222, 128, .2)) drop-shadow(0 0 20px rgba(74, 222, 128, .15)) brightness(1.1);
}

@keyframes owlBob {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* box shadow animation pulsing */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, .5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.marquee {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
    overflow: hidden;
    background: var(--surface);
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: var(--font-instrument), serif;
    font-style: italic;
    font-size: 22px;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 60px;
}

.marquee-track span::after {
    content: '✦';
    font-family: var(--font-instrument), serif;
    color: var(--moss);
    font-size: 14px;
    font-style: normal;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    will-change: transform;
}

.orb.a {
    width: 620px;
    height: 620px;
    left: -180px;
    top: -140px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.25) 0%, rgba(74, 222, 128, 0) 70%);
    animation: floatA 14s ease-in-out infinite;
}

@keyframes floatA {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(80px, 60px) scale(1.1);
    }
    66% {
        transform: translate(-40px, 100px) scale(0.95);
    }
}

#plugins .plugin .plugin-logo {
    box-shadow: 0 2px 4px rgba(0, 0, 0, .4), 0 20px 40px -12px rgba(0, 0, 0, .6), inset 0 0 0 1px rgba(74, 222, 128, .12), 0 0 40px -10px rgba(74, 222, 128, .25);
}

#plugins .plugin:hover .plugin-logo {
    transform: rotate(0) scale(1.04);
}

.cta-inner {

}

.cta-inner::before {
    content: '' !important;
    position: absolute !important;
    width: 600px !important;
    height: 600px !important;
    right: -200px !important;
    left: auto !important;
    top: -200px !important;
    background: radial-gradient(circle, rgba(74, 222, 128, .35) 0%, transparent 70%) !important;
    border: none !important;
    border-radius: 50% !important;
    animation: floatA 18s ease-in-out infinite !important;
}

.cta-inner::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    left: -100px;
    bottom: -150px;
    background: radial-gradient(circle, rgba(134, 239, 172, .25) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatB 22s ease-in-out infinite;
}

.footer-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-orbs .orb {
    opacity: 0.35;
}

.footer-orbs .orb.f1 {
    width: 500px;
    height: 500px;
    left: 10%;
    top: 20%;
    background: radial-gradient(circle, rgba(74, 222, 128, .3) 0%, transparent 70%);
    animation: floatA 16s ease-in-out infinite;
}

.footer-orbs .orb.f2 {
    width: 400px;
    height: 400px;
    right: 5%;
    top: 10%;
    background: radial-gradient(circle, rgba(134, 239, 172, .22) 0%, transparent 70%);
    animation: floatB 20s ease-in-out infinite;
}

.footer-orbs .orb.f3 {
    width: 600px;
    height: 600px;
    left: 40%;
    bottom: -20%;
    background: radial-gradient(circle, rgba(22, 101, 52, .6) 0%, transparent 70%);
    animation: floatC 24s ease-in-out infinite;
}

@keyframes floatB {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-90px, 50px) scale(1.15);
    }
}

@keyframes floatB {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.35;
    }
    50% {
        transform: translate(60px, -80px) scale(1.08);
        opacity: 0.55;
    }
}

.socials a:hover {
    background: var(--moss);
    border-color: var(--moss);
    color: var(--paper);
    transform: translateY(-2px);
}

.footer-stamp {
    position: absolute;
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%);
    font-family: var(--font-body), serif;
    font-style: italic;
    font-size: 28vw;
    font-weight: 400;
    color: rgba(74, 222, 128, .04);
    line-height: 0.85;
    letter-spacing: -0.04em;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.plugins-faq.elementor-widget-n-accordion .e-n-accordion-item[open] > .e-n-accordion-item-title {
    border-bottom: none !important;
    border-radius: 18px 18px 0 0;
}

.plugins-faq.elementor-widget-n-accordion .e-n-accordion-item span.e-opened,
.plugins-faq.elementor-widget-n-accordion .e-n-accordion-item span.e-closed {
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: rgba(74, 222, 128, .1);
}

.plugins-faq.elementor-widget-n-accordion .e-n-accordion-item[open] span.e-opened,
.plugins-faq.elementor-widget-n-accordion .e-n-accordion-item[open] span.e-closed {
    background-color: var(--moss);
}

.precisionwp-docs-card .elementor-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(74, 222, 128, .08) !important;
    border: 1px solid rgba(74, 222, 128, .2) !important;
    color: var(--moss) !important;
    display: grid;
    place-items: center;
}

.precisionwp-docs-card-link {
    margin-top: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--moss);
}

/* ============================================================
       PRECISIONWP SCROLLBAR
    ============================================================ */
html,
body,
pre,
textarea,
.table-wrap,
.settings-sidebar,
.choices__list--dropdown {
    scrollbar-width: thin;
    scrollbar-color: var(--line-2) transparent;
}

::-webkit-scrollbar,
pre::-webkit-scrollbar,
textarea::-webkit-scrollbar,
.table-wrap::-webkit-scrollbar,
.settings-sidebar::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track,
pre::-webkit-scrollbar-track,
textarea::-webkit-scrollbar-track,
.table-wrap::-webkit-scrollbar-track,
.settings-sidebar::-webkit-scrollbar-track {
    background: var(--surface);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb,
pre::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb,
.table-wrap::-webkit-scrollbar-thumb,
.settings-sidebar::-webkit-scrollbar-thumb {
    background: var(--line-2);
    border: 2px solid var(--surface);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(74, 222, 128, 0.25);
}

::-webkit-scrollbar-corner {
    background: var(--surface);
}

/* ============================================================
	   PRECISIONWP DOCS DESIGN SYSTEM
   ============================================================ */

/* ----- Layout ----- */
.single-doc .docs-sidebar {
    overflow-y: auto;
    max-height: calc(100vh - 200px);
}

.single-doc article {
    background: #0d1411;
    color: #e8f0ea;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
    padding: 32px clamp(16px, 3vw, 48px);
    border-radius: 14px;
    border: 1px solid #24312b;
    max-width: 920px;
    margin: 0 auto;
}

.single-doc article * {
    box-sizing: border-box;
}

/* Article wrapper */
.main-content .doc {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 24px 96px;
}

/* Short-version intro card */
.main-content .doc-intro {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 22px;
    margin-bottom: 56px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: inset 0 0 0 1px rgba(74, 222, 128, .04);
}

.main-content p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-2);
    text-wrap: pretty;
}

.main-content h2 {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 24px 0;
    display: flex;
    align-items: baseline;
    gap: 16px;
    text-wrap: balance;
}

.main-content h2 em {
    font-family: var(--font-body), serif;
    font-style: italic;
    font-weight: 400;
    color: var(--moss);
}

section h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--cream);
    margin: 28px 0 10px;
    letter-spacing: -0.005em;
}

.main-content a.inline {
    color: var(--moss);
    text-decoration: none;
    border-bottom: 1px solid rgba(74, 222, 128, .35);
    transition: color .2s, border-color .2s;
}

.main-content .ico {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--surface-2);
    border: 1px solid var(--line-2);
    display: grid;
    place-items: center;
    color: var(--moss);
}

.main-content .ico svg {
    width: 26px;
    height: 26px;
}

.main-content .label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.main-content p {
    margin: 0;
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.6;
}

.main-content ul,
.main-content ol {
    margin: 4px 0 16px;
    padding-left: 22px;
}

.main-content li {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-2);
    margin-bottom: 8px;
}

.main-content p em {
    font-family: var(--font-body), serif;
    font-style: italic;
    font-weight: 400;
    color: var(--cream);
}

.main-content h2 .num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px 10px;
    flex-shrink: 0;
    position: relative;
    top: -4px;
}

.main-content .defs {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 8px;
}

.main-content .defs-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.main-content .t {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    color: var(--moss);
    letter-spacing: -0.005em;
}

.main-content .d {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--ink-2);
}

.main-content .contact-block {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 30px;
    margin: 64px 0 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(20, 28, 24, .85), rgba(20, 28, 24, .5)),
    radial-gradient(420px 160px at 90% 110%, rgba(74, 222, 128, .14), transparent 70%);
}

.main-content .contact-block .ctb-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.main-content .contact-block h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 8px;
    letter-spacing: -0.018em;
    line-height: 1.2;
}

.main-content .contact-block p {
    font-size: 14.5px;
    color: var(--ink-2);
    margin: 0;
    line-height: 1.55;
}

.main-content .contact-block p a {
    color: var(--moss);
    text-decoration: none;
    border-bottom: 1px solid rgba(74, 222, 128, .35);
}

.main-content .contact-block h3 em {
    font-family: var(--font-body), serif;
    font-style: italic;
    font-weight: 400;
    color: var(--moss);
}

.main-content .ctb-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    background: var(--moss);
    color: var(--paper);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .2s;
    box-shadow: 0 10px 26px -10px rgba(74, 222, 128, .5);
}

.main-content .ctb-cta svg {
    width: 14px;
    height: 14px;
}

.main-content .related {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.main-content .related a {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(20, 28, 24, .4);
    text-decoration: none;
    color: var(--ink);
    transition: border-color .2s, transform .2s;
}

.main-content .related a:hover {
    border-color: var(--moss);
    transform: translateY(-1px);
}

.main-content .related .r-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--moss);
    flex-shrink: 0;
}

.main-content .related .r-ico svg {
    width: 16px;
    height: 16px;
}

.main-content .related .r-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.main-content .related .r-t {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.005em;
}

.main-content .related .r-d {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.45;
}

@media (max-width: 768px) {
    .main-content .defs-row,
    .main-content .doc-intro {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .main-content h2 {
        display: block;
    }

    .single-doc .docs-sidebar > .e-con-inner {
        flex-direction: column !important;
    }
}

/* ----- Typography ----- */
.single-doc article h1 {
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.2;
    margin: 6px 0 14px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.single-doc article h2 {
    font-size: 22px;
    line-height: 1.3;
    margin: 36px 0 12px;
    color: #ffffff;
    font-weight: 600;
    padding-top: 8px;
    border-top: 1px solid #24312b;
}

.single-doc article h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.single-doc article h3 {
    font-size: 17px;
    line-height: 1.35;
    margin: 24px 0 10px;
    color: #e8f0ea;
    font-weight: 600;
}

.single-doc article h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 12px;
    color: #ffffff;
    font-weight: 600;
}

.single-doc article p {
    margin: 0 0 14px;
    color: #c8d2cb;
}

.single-doc article strong {
    color: #ffffff;
    font-weight: 600;
}

.single-doc article em {
    font-style: italic;
}

/* ----- Links ----- */
.single-doc article a {
    color: #4ade80;
    text-decoration: none;
    border-bottom: 1px solid rgba(74, 222, 128, 0.35);
    transition: border-color 0.15s ease;
}

.single-doc article a:hover {
    border-bottom-color: #4ade80;
}

.single-doc article a[rel="next"],
.single-doc article a[rel="next"]:hover,
.single-doc article a[rel="prev"],
.single-doc article a[rel="prev"]:hover {
    border-bottom: none;
}

/* ----- Code, pre, kbd ----- */
.single-doc article code {
    background: #0a110d;
    border: 1px solid #24312b;
    padding: 1px 6px;
    border-radius: 4px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.92em;
    color: #4ade80;
}

.single-doc article pre {
    background: #0a110d;
    border: 1px solid #24312b;
    border-radius: 8px;
    padding: 14px 16px;
    overflow-x: auto;
    margin: 14px 0;
    font-size: 13px;
    line-height: 1.55;
}

.single-doc article pre code {
    background: transparent;
    border: none;
    padding: 0;
    color: #e8f0ea;
}

.single-doc article kbd {
    background: #141c18;
    border: 1px solid #2e3d36;
    border-bottom-width: 2px;
    border-radius: 4px;
    padding: 1px 6px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.85em;
    color: #e8f0ea;
}

/* ----- Lists ----- */
.single-doc article ul, .single-doc article ol {
    margin: 0 0 14px;
    padding-left: 22px;
    color: #c8d2cb;
}

.single-doc article li {
    margin: 6px 0;
}

/* ----- Component: meta header ----- */
.single-doc article .doc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: center;
    font-size: 13px;
    color: #9ca3a0;
    margin-bottom: 8px;
}

.single-doc article .doc-meta .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #2e3d36;
    display: inline-block;
}

.single-doc article .doc-category {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(74, 222, 128, 0.10);
    color: #4ade80;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 12px;
    text-transform: uppercase;
}

/* ----- Component: lead paragraph ----- */
.single-doc article .doc-lead {
    font-size: 16px;
    color: #c8d2cb;
    margin-bottom: 22px;
}

/* ----- Component: callout ----- */
.single-doc article .doc-callout {
    border: 1px solid #24312b;
    border-left: 3px solid #4ade80;
    background: #141c18;
    border-radius: 8px;
    padding: 14px 16px;
    margin: 18px 0;
}

.single-doc article .doc-callout--warn {
    border-left-color: #facc15;
}

.single-doc article .doc-callout--warn .doc-callout__title {
    color: #facc15;
}

.single-doc article .doc-callout--info {
    border-left-color: #60a5fa;
}

.single-doc article .doc-callout--info .doc-callout__title {
    color: #60a5fa;
}

.single-doc article .doc-callout__title {
    font-weight: 600;
    color: #4ade80;
    margin-bottom: 4px;
    font-size: 14px;
    letter-spacing: 0.02em;
}

.single-doc article .doc-callout p:last-child {
    margin-bottom: 0;
}

/* ----- Component: numbered steps ----- */
.single-doc article .doc-steps {
    counter-reset: step;
    list-style: none;
    padding-left: 0;
}

.single-doc article .doc-steps > li {
    counter-increment: step;
    position: relative;
    padding-left: 44px;
    padding-bottom: 16px;
    padding-top: 4px;
    margin: 0;
}

.single-doc article .doc-steps > li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(74, 222, 128, 0.30);
}

/* ----- Component: status table ----- */
.single-doc article .doc-status-table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0;
    font-size: 14px;
    border: 1px solid #24312b;
    border-radius: 8px;
    overflow: hidden;
}

.single-doc article .doc-status-table th, .single-doc article .doc-status-table td {
    text-align: left;
    padding: 10px 14px;
    border-bottom: 1px solid #24312b;
}

.single-doc article .doc-status-table th {
    background: #141c18;
    color: #ffffff;
    font-weight: 600;
}

.single-doc article .doc-status-table tr:last-child td {
    border-bottom: none;
}

/* ----- Component: status badges ----- */
.single-doc article .doc-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.single-doc article .doc-badge--success {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
}

.single-doc article .doc-badge--warn {
    background: rgba(250, 204, 21, 0.15);
    color: #facc15;
}

.single-doc article .doc-badge--danger {
    background: rgba(248, 113, 113, 0.15);
    color: #f87171;
}

.single-doc article .doc-badge--muted {
    background: #24312b;
    color: #c8d2cb;
}

/* ----- Component: card grid ----- */
.single-doc article .doc-tab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin: 16px 0 22px;
}

.single-doc article .doc-tab-card {
    background: #141c18;
    border: 1px solid #24312b;
    border-radius: 10px;
    padding: 14px 16px;
}

.single-doc article .doc-tab-card strong {
    display: block;
    color: #ffffff;
    margin-bottom: 4px;
    font-size: 14px;
}

.single-doc article .doc-tab-card span {
    color: #9ca3a0;
    font-size: 13px;
    line-height: 1.45;
}

/* ----- Component: figure with caption ----- */
.single-doc article .doc-figure {
    margin: 18px 0;
    padding: 12px;
    background: #141c18;
    border: 1px solid #24312b;
    border-radius: 10px;
}

.single-doc article .doc-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.single-doc article .doc-figure figcaption {
    margin-top: 10px;
    font-size: 13px;
    color: #9ca3a0;
    text-align: center;
}

/* ----- Component: divider ----- */
.single-doc article .doc-divider {
    height: 1px;
    background: #24312b;
    border: 0;
    margin: 28px 0;
}

/* ----- Component: related links footer ----- */
.single-doc article .doc-related {
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid #24312b;
}

.single-doc article .doc-related h4 {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 12px;
    font-weight: 600;
}

.single-doc article .doc-related ul {
    list-style: none;
    padding-left: 0;
}

.single-doc article .doc-related li {
    margin: 4px 0;
}

.single-doc article .doc-related li::before {
    content: "→";
    color: #4ade80;
    margin-right: 8px;
}

.plugin-picker {
    position: relative;
    margin-bottom: 24px;
}

.plugin-picker button.pp-trigger,
.plugin-picker button.pp-trigger:hover,
.plugin-picker button.pp-trigger:active,
.plugin-picker button.pp-trigger:focus {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: border-color .2s, background .2s;
}

.plugin-picker button.pp-trigger:hover {
    border-color: var(--moss);
}

.plugin-picker button.pp-trigger.is-open {
    border-color: var(--moss);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.plugin-picker .pp-ico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--paper);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    overflow: hidden;
    flex-shrink: 0;
}

.plugin-picker .pp-ico img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.plugin-picker .pp-meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.plugin-picker .pp-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.plugin-picker .pp-ver {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: .04em;
}

.plugin-picker .pp-chev {
    width: 14px;
    height: 14px;
    color: var(--muted);
    transition: transform .25s;
    flex-shrink: 0;
}

.plugin-picker .pp-menu button .pp-check {
    opacity: 0;
}

.plugin-picker .pp-menu button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    color: var(--ink-2);
    border-radius: 8px;
    transition: background .15s, color .15s;
}

.plugin-picker .pp-menu button a {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
}

.plugin-picker .pp-menu button:hover {
    border: none;
    border-radius: 8px;
    background: rgba(74, 222, 128, .06);
    color: var(--ink);
}

.plugin-picker .pp-menu button.is-current {
    background: rgba(74, 222, 128, .1);
    color: var(--moss);
}

.plugin-picker .pp-menu button.is-current .pp-check {
    width: 14px;
    height: 14px;
    color: var(--moss);
    flex-shrink: 0;
    opacity: 1;
}

.plugin-picker .pp-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 1px);
    background: var(--surface);
    border: 1px solid var(--moss);
    border-top: 1px solid var(--line);
    border-radius: 0 0 12px 12px;
    padding: 6px;
    z-index: 5;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6);
    max-height: 320px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity .18s, transform .18s;
}

.plugin-picker .pp-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.plugin-picker .pp-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--muted-2);
    margin-bottom: 8px;
}

.meta-pill {
    font-family: 'JetBrains Mono', monospace;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.meta-pill .dot-live {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--moss);
    box-shadow: 0 0 0 3px rgba(74, 222, 128, .18);
    animation: pulse 2s ease-in-out infinite;
}

.side-group {
    margin-bottom: 22px;
}

.side-group h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--muted-2);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.side-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-group li {
    position: relative;
}

.side-group a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 12px;
    font-size: 13px;
    color: var(--ink-2);
    text-decoration: none;
    border-radius: 8px;
    border-left: 1px solid var(--line);
    margin-left: 6px;
    transition: color .15s, background .15s, border-color .15s;
}

.side-group a:hover {
    color: var(--moss);
    background: rgba(74, 222, 128, .04);
    border-left-color: rgba(74, 222, 128, .4);
}

.side-group a.is-active {
    color: var(--moss);
    background: rgba(74, 222, 128, .07);
    border-left-color: var(--moss);
    font-weight: 600;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 18px;
}

.article-meta .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 11px 5px 7px;
    border-radius: 999px;
    background: rgba(74, 222, 128, .06);
    border: 1px solid rgba(74, 222, 128, .2);
    color: var(--moss);
}

.article-meta .pill .pico {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: var(--surface);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.article-meta .pill .pico img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.article-meta .sep {
    color: var(--muted-2);
}

.article-meta .last-up time {
    font-family: var(--font-body), serif;
    font-style: italic;
    color: var(--ink-2);
    text-transform: none;
    letter-spacing: 0;
    font-size: 13px;
}

.article-meta strong {
    color: var(--ink-2);
}

.docs-main .article-title h1 em {
    font-family: var(--font-body), serif;
    font-style: italic;
    font-weight: 400;
    color: var(--moss);
}

.elementor-toc__body .elementor-toc__list-wrapper .elementor-toc__list-item {
    margin-bottom: 4px;
}

.elementor-toc__body .elementor-toc__list-wrapper .elementor-toc__list-item .elementor-toc__list-item-text-wrapper a {
    display: block;
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    padding: 5px 12px;
    border-left: 1px solid var(--line);
    transition: color .15s, border-color .15s;
    line-height: 1.45;
}

.elementor-toc__body .elementor-toc__list-wrapper .elementor-toc__list-item > ul > li .elementor-toc__list-item-text-wrapper a {
    padding-left: 20px;
}

.elementor-toc__body .elementor-toc__list-wrapper .elementor-toc__list-item .elementor-toc__list-item-text-wrapper a:hover {
    color: var(--moss);
    border-left-color: var(--moss);
}

.copy-link-to-article,
.back-to-top {
    cursor: pointer;
}

.elementor-post-navigation .elementor-post-navigation__link a {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--ink);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1.05;
    background: linear-gradient(160deg, #1a2520 0%, #0e1714 100%);
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 60px 100px -40px rgba(0, 0, 0, .7), 0 0 0 1px rgba(74, 222, 128, .06);
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(74, 222, 128, .22), transparent 55%), radial-gradient(circle at 80% 80%, rgba(134, 239, 172, .16), transparent 55%);
    pointer-events: none;
}

.product-image-wrapper img {
    filter: drop-shadow(0 0 30px rgba(74, 222, 128, .45));
}

.product-image-wrapper .floating-chip {
    position: absolute;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(20, 28, 24, .85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line-2);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink-2);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .5);
}

.product-image-wrapper .floating-chip .dot {
    width: 6px;
    height: 6px;
    background: var(--moss-glow);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--moss-glow);
}

.product-image-wrapper .floating-chip.c1 {
    left: 6%;
    top: 18%;
    animation: floatChip 6s ease-in-out infinite;
}

.product-image-wrapper .floating-chip.c2 {
    right: 6%;
    top: 32%;
    animation: floatChip 7s ease-in-out infinite reverse;
}

.product-image-wrapper .floating-chip.c3 {
    left: 10%;
    bottom: 16%;
    animation: floatChip 8s ease-in-out infinite;
}

.product-image-wrapper .floating-chip.c4 {
    right: 8%;
    bottom: 22%;
    animation: floatChip 9s ease-in-out infinite reverse;
}

@keyframes floatChip {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .precisionwp-logo .elementor-image-box-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .marquee-track {
        gap: 30px;

        animation: marquee 3s linear infinite;
    }

    .marquee-track span {
        gap: 30px;
    }

    .article-meta .pill .pico {
        width: 60px;
        height: 30px;
    }

    .article-meta {
        font-size: 9px;
    }
}


/* Docs  */
.upvote,
.downvote {
    cursor: pointer;
}

/* Docs Search Modal */

.precisionwp-search-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    max-width: 420px;
    padding: 10px 14px;
    background: #141c18;
    border: 1px solid #24312b;
    border-radius: 10px;
    color: #8a9a93;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.precisionwp-search-wrapper:hover,
.precisionwp-search-wrapper:focus {
    border-color: #4ade80;
    background: #18211c;
    outline: none;
}

.precisionwp-search-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.precisionwp-search-icon {
    color: #4ade80;
}

.precisionwp-search-kbd,
.pal-input-row kbd {
    display: inline-block;
    padding: 2px 6px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 12px;
    line-height: 1;
    color: #c7d3cd;
    background: #0a110d;
    border: 1px solid #24312b;
    border-radius: 4px;
}

.pal-backdrop {
    position: fixed;
    inset: 0;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 12vh 16px 16px;
    background: rgba(5, 9, 7, 0.72);
    backdrop-filter: blur(2px);
    z-index: 1080;
}

.pal-backdrop.is-open {
    display: flex;
}

.pal-shell {
    width: 100%;
    max-width: 680px;
    background: #141c18;
    border: 1px solid #24312b;
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 76vh;
}

.pal-input-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid #24312b;
    color: #8a9a93;
}

.pal-input-row svg {
    flex: 0 0 auto;
    color: #4ade80;
}

.pal-input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #e8f0ea;
    font-size: 16px;
    outline: none;
    padding: 4px 0;
}

.pal-input::placeholder {
    color: #6b7a73;
}

.pal-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 8px;
}

.pal-empty,
.pal-no-results {
    padding: 22px 14px;
    text-align: center;
    color: #8a9a93;
    font-size: 14px;
}

.pal-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 14px;
}

.pal-spinner {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(74, 222, 128, 0.18);
    border-top-color: #4ade80;
    border-radius: 50%;
    animation: pal-spin 0.7s linear infinite;
}

@keyframes pal-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pal-fade-in {
    from {
        opacity: 0;
        transform: translateY(2px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pal-backdrop.is-open .pal-shell {
    animation: pal-shell-in 0.18s ease-out;
}

@keyframes pal-shell-in {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pal-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 8px;
    color: #e8f0ea;
    text-decoration: none;
    transition: background 0.12s ease;
    animation: pal-fade-in 0.18s ease-out both;
}

.pal-result-item:hover,
.pal-result-item:focus,
.pal-result-item.is-active {
    background: #1b2520;
    color: #e8f0ea;
    text-decoration: none;
    outline: none;
}

.pal-result-jump {
    flex: 0 0 auto;
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #8a9a93;
    white-space: nowrap;
}

.pal-result-item:hover .pal-result-jump,
.pal-result-item.is-active .pal-result-jump {
    display: inline-flex;
}

.pal-result-item:hover .pal-result-product,
.pal-result-item.is-active .pal-result-product {
    display: none;
}

.pal-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    border-top: 1px solid #24312b;
    background: #0f1612;
    font-size: 12px;
    color: #8a9a93;
}

.pal-footer-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pal-result-main {
    flex: 1 1 auto;
    min-width: 0;
}

.pal-result-title {
    font-size: 14px;
    font-weight: 600;
    color: #e8f0ea;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pal-result-excerpt {
    margin-top: 2px;
    font-size: 13px;
    color: #8a9a93;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pal-result-product {
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 4px 8px;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.12);
    border-radius: 999px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .precisionwp-search-wrapper .elementor-icon-box-wrapper {
        flex-direction: row !important;
    }

    .precisionwp-search-wrapper .elementor-icon-box-title {
        font-size: 13px;
    }
}

body.precisionwp-search-open {
    overflow: hidden;
}

/* Tutorials */
.tutorials-filters .filters-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tutorials-filters .filter-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.tutorials-filters .filter-row .label {
    flex-shrink: 0;
}

.tutorials-filters .chips-scroll {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
}

.tutorials-filters .chips-scroll .chip {
    flex-shrink: 0;
}

.elementor-loop-container .e-loop-item.tutorial-filter-hidden {
    display: none !important;
}

.tutorials-filters .label {
    margin: 0;
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--muted-2);
}

.tutorials-filters .chip,
.tutorials-filters .chip:hover,
.tutorials-filters .chip:focus,
.tutorials-filters .chip:active {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink-2);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
}

.tutorials-filters .chip:hover {
    background: rgba(255, 255, 255, .05);
    border-color: var(--moss);
    color: var(--moss);
}

.tutorials-filters .chip.is-active {
    background: var(--moss);
    color: var(--paper);
    border-color: var(--moss);
    box-shadow: 0 4px 14px -4px rgba(74, 222, 128, .45);
}

.tutorials-filters .chip .ico {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .05);
    flex-shrink: 0;
}

.tutorials-filters .chip.is-active .ico {
    background: rgba(13, 20, 17, .18);
}

.tutorials-filters .chip .ico img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tutorials-filters .chip .count {
    position: relative;
    top: 2px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    opacity: .7;
}

.tutorial-loop-item .plugin-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--paper);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.tutorial-loop-item .plugin-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.tutorial-loop-item .tutorial-loop-item-link {
    margin-top: auto;
}

.tutorial-loop-item .time-to-read {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .04em;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(13, 20, 17, .82);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    color: var(--ink-2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tutorial-loop-item .time-to-read svg {
    width: 10px;
    height: 10px;
    color: var(--moss);
}

/* Display typography uses Instrument Serif for editorial feel */
.tutorial-article h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 48px 0 14px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.tutorial-article h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 26px 0 10px;
}

.tutorial-article p {
    margin: 0 0 1em;
    color: var(--ink-2);
}

.tutorial-article a {
    color: var(--moss);
    text-decoration: none;
    border-bottom: 1px solid rgba(74, 222, 128, .35);
    transition: border-color .15s, color .15s;
}

.tutorial-article a:hover {
    color: var(--moss-glow);
    border-bottom-color: var(--moss-glow);
}

.tutorial-article ul, .tutorial-article ol {
    margin: 0 0 1em;
    padding-left: 1.5em;
    color: var(--ink-2);
}

.tutorial-article li {
    margin: .25em 0;
}

.tutorial-article em {
    font-style: italic;
    color: var(--ink);
}

.tutorial-article strong {
    font-weight: 700;
    color: var(--ink);
}

/* Inline code (within prose) */
.tutorial-article code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.86em;
    background: var(--surface-2);
    color: var(--moss-glow);
    padding: 2px 7px;
    border-radius: 6px;
    border: 1px solid var(--line);
}

/* Deck under H1 */
.tutorial-article__subhead {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    line-height: 1.55;
    color: var(--muted);
    font-weight: 400;
    margin: 0 0 32px;
}

/* Meta strip (category, level, reading time) */
.tutorial-article__meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    margin: 0 0 28px;
}

.tutorial-article__meta strong {
    color: var(--moss);
    font-weight: 600;
}

/* Intro panel */
.tutorial-article__intro {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px 24px;
    margin: 0 0 28px;
}

.tutorial-article__intro h3 {
    margin-top: 0;
    color: var(--moss);
}

.tutorial-article__intro ul {
    margin: .5em 0 0;
    padding-left: 1.4em;
}

/* Table of contents */
.tutorial-article__toc {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 22px;
    margin: 0 0 36px;
}

.tutorial-article__toc strong {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--muted);
    margin-bottom: 10px;
    font-weight: 500;
}

.tutorial-article__toc ol {
    margin: 0;
    padding-left: 1.4em;
    color: var(--ink-2);
}

.tutorial-article__toc li {
    margin: .2em 0;
}

.tutorial-article__toc li::marker {
    color: var(--moss);
}

@media (max-width: 768px) {
    .tutorial-article code {
        word-break: break-word;
    }
}

/* Step block (the "enable it" instruction) */
.tutorial-article__step {
    background: var(--surface-2);
    border: 1px solid var(--line-2);
    border-left: 3px solid var(--moss);
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    margin: 18px 0;
    color: var(--ink-2);
}

.tutorial-article__step strong {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--moss);
    margin-right: 8px;
    font-weight: 600;
}

/* Callouts */
.tutorial-article__callout {
    border-radius: 14px;
    padding: 18px 22px;
    margin: 18px 0;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    font-size: 15px;
    line-height: 1.6;
}

.tutorial-article__callout strong {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 8px;
    font-weight: 600;
}

.tutorial-article__callout--warning {
    background: rgba(249, 115, 22, .06);
    border-color: rgba(249, 115, 22, .25);
}

.tutorial-article__callout--warning strong {
    color: var(--rust);
}

.tutorial-article__callout--tip {
    background: rgba(74, 222, 128, .06);
    border-color: rgba(74, 222, 128, .25);
}

.tutorial-article__callout--tip strong {
    color: var(--moss);
}

.tutorial-article__callout--info {
    background: var(--surface-2);
    border-color: var(--line-2);
}

.tutorial-article__callout--info strong {
    color: var(--ink-2);
}

/* Code block (multi-line) */
.tutorial-article__code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    line-height: 1.6;
    background: var(--surface-2);
    color: var(--ink);
    border: 1px solid var(--line-2);
    border-radius: 10px;
    padding: 18px 22px;
    margin: 18px 0;
    overflow-x: auto;
    white-space: pre;
}

.tutorial-article__code code {
    background: transparent;
    border: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

/* Inline UI path chip (e.g., AdminEase > Security > Hardening) */
.tutorial-article__path {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    background: var(--surface-2);
    color: var(--moss-glow);
    padding: 3px 9px;
    border-radius: 999px;
    border: 1px solid var(--line-2);
    letter-spacing: .02em;
}

/* Conclusion panel */
.tutorial-article__conclusion {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
    border: 1px solid var(--line-2);
    border-radius: 14px;
    padding: 26px 28px;
    margin: 48px 0 24px;
}

.tutorial-article__conclusion h2 {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    color: var(--moss);
}

/* FAQ section */
.tutorial-article__faq {
    margin: 36px 0 12px;
}

.tutorial-article__faq h2 {
    color: var(--ink);
}

.tutorial-article__faq h3 {
    color: var(--moss);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin: 22px 0 6px;
}

/* Selection */
.tutorial-article ::selection {
    background: rgba(74, 222, 128, .28);
    color: var(--ink);
}

/* Contact page */
.sidebar-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(74, 222, 128, .08);
    border: 1px solid rgba(74, 222, 128, .15);
    display: grid;
    place-items: center;
}

.sidebar-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--moss);
}