/* Prism Software inspired theme for tech2view */

:root {
    --prism-blue: #18417e;
    --prism-blue-dark: #1e4d8c;
    --prism-blue-light: #eef3fa;
    --prism-text: #1a1a1a;
    --prism-text-muted: #5a6578;
    --prism-footer-bg: #1e2a3a;
    --prism-border: #dde3ec;
    --prism-white: #ffffff;
    --prism-green: #79c042;
}

body.prism-theme {
    background: var(--prism-white);
    color: var(--prism-text);
    font-size: 17px;
}

/* Header */
body.prism-theme header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--prism-border);
    opacity: 1;
    z-index: 9999;
}

body.prism-theme .main-header {
    padding: 18px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Desktop topbar — Prism-style inline nav + CTA */
body.prism-theme .prism-topbar {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

body.prism-theme .prism-topbar-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

body.prism-theme .prism-topbar-links li {
    margin: 0;
}

body.prism-theme .prism-topbar-links a {
    font-size: 16px;
    font-weight: 300;
    color: var(--prism-text);
    text-decoration: none;
}

body.prism-theme .prism-topbar-links a:hover,
body.prism-theme .prism-topbar-links .current a,
body.prism-theme .prism-topbar-links .current .prism-topbar-trigger {
    color: var(--prism-blue);
}

body.prism-theme .prism-topbar-item {
    position: static;
}

body.prism-theme .prism-topbar-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 300;
    color: var(--prism-text);
    text-decoration: none;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

body.prism-theme .prism-topbar-chevron {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s;
}

body.prism-theme .prism-topbar-item.has-mega-menu:hover .prism-topbar-chevron,
body.prism-theme .prism-topbar-item.has-mega-menu.is-open .prism-topbar-chevron,
body.prism-theme .prism-topbar-item.has-mega-menu:focus-within .prism-topbar-chevron {
    transform: rotate(225deg) translateY(1px);
}

body.prism-theme .prism-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--prism-white);
    border-top: 1px solid var(--prism-border);
    border-bottom: 1px solid var(--prism-border);
    box-shadow: 0 18px 40px rgba(24, 65, 126, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 9998;
}

body.prism-theme .prism-topbar-item.has-mega-menu:hover .prism-mega-menu,
body.prism-theme .prism-topbar-item.has-mega-menu.is-open .prism-mega-menu,
body.prism-theme .prism-topbar-item.has-mega-menu:focus-within .prism-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

body.prism-theme .prism-mega-menu-inner {
    padding: 28px 50px 36px;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
}

body.prism-theme .prism-mega-menu-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--prism-border);
}

body.prism-theme .prism-mega-menu-label {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--prism-blue);
}

body.prism-theme .prism-mega-menu-title {
    margin: 0;
    font-size: 28px;
    font-weight: 300;
    color: var(--prism-text);
}

body.prism-theme .prism-mega-menu-grid {
    display: grid;
    gap: 14px;
}

body.prism-theme .prism-mega-menu-grid--services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.prism-theme .prism-mega-menu-grid--portfolio {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.prism-theme .prism-mega-menu-portfolio-groups {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

body.prism-theme .prism-mega-menu-group-title {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--prism-blue);
}

body.prism-theme .prism-mega-menu-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--prism-border);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    background: var(--prism-white);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

body.prism-theme .prism-mega-menu-card:hover {
    border-color: rgba(24, 65, 126, 0.35);
    box-shadow: 0 8px 24px rgba(24, 65, 126, 0.1);
    transform: translateY(-1px);
}

body.prism-theme .prism-mega-menu-card-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--prism-blue-light);
}

body.prism-theme .prism-mega-menu-card-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

body.prism-theme .prism-mega-menu-card-thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
}

body.prism-theme .prism-mega-menu-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.prism-theme .prism-mega-menu-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

body.prism-theme .prism-mega-menu-card-body strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--prism-text);
    line-height: 1.35;
}

body.prism-theme .prism-mega-menu-card-body span {
    font-size: 14px;
    line-height: 1.5;
    color: var(--prism-text-muted);
}

body.prism-theme .prism-mega-menu-card-badge {
    display: inline-block;
    width: fit-content;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--prism-blue-light);
    color: var(--prism-blue);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

body.prism-theme .prism-mega-menu-card--portfolio {
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
}

body.prism-theme .prism-mega-menu-card--portfolio .prism-mega-menu-card-thumb {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
}

body.prism-theme .prism-mega-menu-card--portfolio .prism-mega-menu-card-body strong {
    font-size: 15px;
}

body.prism-theme .prism-mega-menu-card--portfolio .prism-mega-menu-card-body span {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.prism-theme .prism-mobile-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

body.prism-theme .prism-mobile-submenu-toggle {
    display: none;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    flex: 0 0 36px;
}

body.prism-theme .prism-mobile-submenu-toggle span {
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s;
}

body.prism-theme .menu-item.has-submenu.is-open .prism-mobile-submenu-toggle span {
    transform: rotate(225deg);
}

body.prism-theme .prism-mobile-submenu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0 0 8px 16px;
}

body.prism-theme .menu-item.has-submenu.is-open .prism-mobile-submenu {
    display: block;
}

body.prism-theme .prism-mobile-submenu a {
    display: block;
    padding: 8px 0;
    font-size: 15px;
    opacity: 0.85;
}

body.prism-theme .prism-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border: 1.5px solid var(--prism-blue);
    border-radius: 6px;
    color: var(--prism-blue);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

body.prism-theme .prism-btn-outline:hover {
    background: var(--prism-blue);
    color: var(--prism-white);
}

body.prism-theme .main-navigation {
    display: none;
}

body.prism-theme a.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: x-large;
    font-weight: 100;
}

body.prism-theme a.site-logo img {
    width: 75px;
    height: auto;
}

body.prism-theme .hdr-btn {
    display: none;
}

body.prism-theme .prism-section-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--prism-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

body.prism-theme .prism-summary-text {
    color: var(--prism-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

body.prism-theme .prism-section-cta {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--prism-border);
    text-align: center;
}

/* Happy clients marquee */
body.prism-theme .prism-happy-clients-section {
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
}

body.prism-theme .prism-happy-clients-section .site-wrapper {
    padding-left: 50px;
    padding-right: 50px;
}

body.prism-theme .prism-happy-clients-section .prism-section-heading {
    margin-bottom: 28px;
}

body.prism-theme .prism-happy-clients-marquee {
    overflow: hidden;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

body.prism-theme .prism-happy-clients-marquee-track {
    display: flex;
    width: max-content;
    animation: prism-happy-clients-marquee var(--marquee-duration, 40s) linear infinite;
    will-change: transform;
}

body.prism-theme .prism-happy-clients-marquee:hover .prism-happy-clients-marquee-track {
    animation-play-state: paused;
}

body.prism-theme .prism-happy-clients-marquee-group {
    display: flex;
    align-items: stretch;
    gap: 24px;
    padding-right: 24px;
    flex-shrink: 0;
}

@keyframes prism-happy-clients-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

body.prism-theme .prism-happy-client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-shrink: 0;
    width: 220px;
    min-height: 140px;
    padding: 24px 20px;
    background: var(--prism-white);
    border: 1px solid var(--prism-border);
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

body.prism-theme .prism-happy-client-card--link {
    cursor: pointer;
}

body.prism-theme .prism-happy-client-card--link:hover {
    box-shadow: 0 8px 24px rgba(43, 94, 167, 0.1);
    transform: translateY(-2px);
    border-color: var(--prism-blue);
}

body.prism-theme .prism-happy-client-card--link:hover .prism-happy-client-name {
    color: var(--prism-blue);
}

body.prism-theme .prism-happy-client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 72px;
}

body.prism-theme .prism-happy-client-logo img {
    max-width: 100%;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
}

body.prism-theme .prism-happy-client-name {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--prism-text);
    line-height: 1.4;
    transition: color 0.2s;
}

@media (prefers-reduced-motion: reduce) {
    body.prism-theme .prism-happy-clients-marquee {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding: 0 50px;
    }

    body.prism-theme .prism-happy-clients-marquee-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        gap: 24px;
    }

    body.prism-theme .prism-happy-clients-marquee-group[aria-hidden="true"] {
        display: none;
    }

    body.prism-theme .prism-happy-clients-marquee-group {
        flex-wrap: wrap;
        justify-content: center;
        padding-right: 0;
    }
}

/* Summary cards (landing page teasers) */
body.prism-theme .prism-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

body.prism-theme .prism-summary-card {
    background: var(--prism-white);
    border: 1px solid var(--prism-border);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

body.prism-theme .prism-summary-card:hover {
    box-shadow: 0 8px 24px rgba(43, 94, 167, 0.1);
    transform: translateY(-2px);
}

body.prism-theme .prism-summary-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

body.prism-theme .prism-summary-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.prism-theme .prism-summary-card-body {
    padding: 24px;
}

body.prism-theme .prism-summary-card-body h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0 10px;
    color: var(--prism-text);
}

body.prism-theme .prism-summary-card-body p {
    font-size: 15px;
    color: var(--prism-text-muted);
    line-height: 1.6;
    margin: 0 0 14px;
}

/* CTA banner */
body.prism-theme .prism-cta-banner {
    background: var(--prism-blue);
    color: var(--prism-white);
    padding: 56px 0;
}

body.prism-theme .prism-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

body.prism-theme .prism-cta-inner h4 {
    color: var(--prism-white);
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 600;
    margin: 0;
    max-width: 680px;
    line-height: 1.4;
}

body.prism-theme .prism-cta-banner .prism-btn-outline {
    border-color: var(--prism-white);
    color: var(--prism-white);
    flex-shrink: 0;
}

body.prism-theme .prism-cta-banner .prism-btn-outline:hover {
    background: var(--prism-white);
    color: var(--prism-blue);
}

/* Inner page hero */
body.prism-theme .prism-page-hero {
    padding: 160px 0 56px;
    background: var(--prism-blue);
    color: var(--prism-white);
    position: relative;
}

/* body.prism-theme .prism-page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--prism-white);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
} */

body.prism-theme .prism-page-hero-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
    margin-bottom: 10px;
}

body.prism-theme .prism-page-hero h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--prism-green);
    text-shadow: 1px 1px white;
    overflow: hidden;
}

body.prism-theme .prism-page-hero h1 .prism-hero-character {
    display: inline-block;
    opacity: 0;
    transform: translateX(2.5rem);
    animation: prism-page-hero-character-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--character-delay, 0s);
}

body.prism-theme .prism-page-hero-label,
body.prism-theme .prism-page-hero-lead {
    opacity: 0;
    transform: translateX(2.5rem);
    animation: prism-page-hero-character-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.prism-theme .prism-page-hero-label {
    animation-delay: 0.05s;
}

body.prism-theme .prism-page-hero-lead {
    animation-delay: var(--lead-delay, 0.45s);
}

@keyframes prism-page-hero-character-in {
    from {
        opacity: 0;
        transform: translateX(2.5rem);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.prism-theme .prism-landing-hero .prism-hero-image img,
    body.prism-theme .prism-page-hero h1 .prism-hero-character,
    body.prism-theme .prism-landing-hero .prism-hero-character,
    body.prism-theme .prism-page-hero-label,
    body.prism-theme .prism-page-hero-lead {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

body.prism-theme .prism-page-hero-lead {
    font-size: 17px;
    opacity: 0.9;
    max-width: 640px;
    line-height: 1.6;
    margin: 0;
}

body.prism-theme .site-nav > ul {
    display: none;
}

body.prism-theme .site-toggle {
    display: block !important;
}

body.prism-theme .site-toggle i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--prism-border);
    border-radius: 8px;
    font-size: 0;
    cursor: pointer;
    background: var(--prism-white);
}

body.prism-theme .site-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--prism-blue);
    border: none;
    margin: 0;
    position: relative;
}

body.prism-theme .site-toggle span::before,
body.prism-theme .site-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--prism-blue);
}

body.prism-theme .site-toggle span::before {
    top: -6px;
}

body.prism-theme .site-toggle span::after {
    top: 6px;
}

body.prism-theme .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(380px, 90vw);
    height: 100vh;
    background: var(--prism-white);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
    padding: 80px 40px 40px;
    transition: right 0.35s ease;
    z-index: 10000;
}

body.prism-theme.on .site-nav {
    right: 0;
}

body.prism-theme .site-nav > ul {
    display: block !important;
}

body.prism-theme .site-nav > ul > li {
    display: block;
    margin: 0;
    border-bottom: 1px solid var(--prism-border);
}

body.prism-theme .site-nav > ul > li > a {
    display: block;
    padding: 18px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--prism-text);
    margin: 0;
}

body.prism-theme .site-nav > ul > li > a::before {
    display: none;
}

body.prism-theme .site-nav > ul > li > a:hover,
body.prism-theme .site-nav > ul > li.current-menu-item > a {
    color: var(--prism-blue);
}

body.prism-theme .nav-close {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
    font-size: 14px;
    color: var(--prism-text-muted);
}

/* Hero */
body.prism-theme .prism-hero {
    padding-top: 72px;
    background: var(--prism-white);
    position: relative;
    overflow: hidden;
}

body.prism-theme .prism-hero::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 75%;
    height: auto;
    right: auto;
    background: linear-gradient(
        to right,
        #18417eeb 0%,
        #18417e73 45%,
        #18417e1a 75%,
        /* rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.82) 45%,
        rgba(255, 255, 255, 0.2) 75%, */
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
}

body.prism-theme #slideshow,
body.prism-theme .hero-section,
body.prism-theme .hero-slider {
    position: static !important;
    height: auto !important;
    width: 100% !important;
    overflow: visible !important;
}

body.prism-theme .prism-hero-image {
    position: relative;
    width: 100%;
    max-height: 520px;
    overflow: hidden;
}

body.prism-theme .prism-hero-image::before,
body.prism-theme .prism-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

body.prism-theme .prism-hero-image::before {
    left: 0;
    /* background: linear-gradient(to right, var(--prism-white), transparent); */
}

body.prism-theme .prism-hero-image::after {
    right: 0;
    /* background: linear-gradient(to left, var(--prism-white), transparent); */
}

body.prism-theme .prism-hero-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

body.prism-theme .prism-landing-hero {
    padding-top: 0;
    min-height: 100vh;
    min-height: 100dvh;
}

body.prism-theme .prism-landing-hero .prism-hero-slider {
    position: relative;
    height: 100vh;
    height: 100dvh;
}

body.prism-theme .prism-landing-hero .prism-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.75s ease, visibility 0.75s ease;
}

body.prism-theme .prism-landing-hero .prism-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

body.prism-theme .prism-landing-hero::before {
    display: none;
}

body.prism-theme .prism-landing-hero .prism-hero-slide::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.82) 45%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
}

body.prism-theme .prism-landing-hero .prism-hero-slide .prism-hero-image {
    position: absolute;
    inset: 0;
    max-height: none;
    height: 100%;
    z-index: 0;
}

body.prism-theme .prism-landing-hero .prism-hero-slide .prism-hero-image img {
    opacity: 1;
    transform: none;
    animation: none;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
}

body.prism-theme .prism-landing-hero .prism-hero-slide.is-active .prism-hero-image img {
    animation: prism-landing-hero-image-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.prism-theme .prism-landing-hero .prism-hero-slide .prism-hero-image::before,
body.prism-theme .prism-landing-hero .prism-hero-slide .prism-hero-image::after {
    display: none;
}

body.prism-theme .prism-landing-hero .prism-hero-slide .prism-hero-text {
    z-index: 4;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding-top: 72px;
    padding-bottom: 72px;
}

body.prism-theme .prism-hero-slider-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    pointer-events: none;
}

body.prism-theme .prism-hero-slider-controls > * {
    pointer-events: auto;
}

body.prism-theme .prism-hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

body.prism-theme .prism-hero-slider-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border-radius: 50%;
    border: 2px solid var(--prism-blue);
    background: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

body.prism-theme .prism-hero-slider-dot.is-active {
    background: var(--prism-blue);
    transform: scale(1.1);
}

body.prism-theme .prism-hero-slider-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--prism-blue);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--prism-blue);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

body.prism-theme .prism-hero-slider-arrow:hover {
    background: var(--prism-blue);
    color: var(--prism-white);
}

@keyframes prism-landing-hero-image-in {
    from {
        opacity: 0;
        transform: translateX(4rem);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

body.prism-theme .prism-landing-hero .prism-hero-line1,
body.prism-theme .prism-landing-hero .prism-hero-line2,
body.prism-theme .prism-product-line1,
body.prism-theme .prism-product-line2 {
    overflow: hidden;
}

body.prism-theme .prism-landing-hero .prism-hero-word,
body.prism-theme .prism-product-line1 .prism-hero-word,
body.prism-theme .prism-product-line2 .prism-hero-word {
    display: inline-block;
    white-space: nowrap;
    vertical-align: top;
}

body.prism-theme .prism-landing-hero .prism-hero-line--continuous .prism-hero-word,
body.prism-theme .prism-product-line1.prism-hero-line--continuous .prism-hero-word,
body.prism-theme .prism-product-line2.prism-hero-line--continuous .prism-hero-word {
    white-space: normal;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

body.prism-theme .prism-landing-hero .prism-hero-character,
body.prism-theme .prism-page-hero h1 .prism-hero-character,
body.prism-theme .prism-product-line1 .prism-hero-character,
body.prism-theme .prism-product-line2 .prism-hero-character {
    display: inline-block;
    opacity: 0;
    transform: translateX(2.5rem);
    animation: prism-page-hero-character-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--character-delay, 0s);
}

body.prism-theme .prism-hero-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    padding: 72px 50px;
    max-width: none;
    background: transparent;
}

body.prism-theme .prism-hero-text.site-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

body.prism-theme .prism-hero-text h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin: 0;
    color: var(--prism-text);
    text-transform: none;
}

body.prism-theme .prism-hero-line1 {
    display: block;
    color: var(--prism-text);
    font-weight: 100;
}

body.prism-theme .prism-hero-line2 {
    display: block;
    color: var(--prism-blue);
    margin-top: 8px;
}

/* Sections */
body.prism-theme .prism-section {
    padding: 72px 0;
}

body.prism-theme .prism-section.prism-section-alt {
    background: var(--prism-blue-light);
}

body.prism-theme .prism-section-heading {
    margin-bottom: 36px;
}

body.prism-theme .prism-section-heading h4 {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 600;
    color: var(--prism-text);
    margin: 0 0 12px;
    line-height: 1.35;
    text-transform: none;
    letter-spacing: normal;
}

body.prism-theme .prism-section-heading p {
    font-size: 17px;
    color: var(--prism-text-muted);
    margin: 0;
    max-width: 720px;
}

/* Tabs */
body.prism-theme .prism-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--prism-border);
    padding-bottom: 0;
}

body.prism-theme .prism-tab {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--prism-text-muted);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: -1px;
    text-align: left;
    line-height: 1.3;
}

body.prism-theme .prism-tab:hover {
    color: var(--prism-blue);
}

body.prism-theme .prism-tab[aria-selected="true"] {
    color: var(--prism-blue);
    border-bottom-color: var(--prism-blue);
    font-weight: 600;
}

body.prism-theme .prism-tab-panel-wrap {
    display: none;
}

body.prism-theme .prism-tab-panel-wrap.is-active {
    display: block;
}

body.prism-theme .prism-tab-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

body.prism-theme .prism-tab-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

body.prism-theme .prism-tab-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

body.prism-theme .prism-tab-content h5 {
    font-size: 22px;
    font-weight: 600;
    color: var(--prism-text);
    margin: 0 0 16px;
}

body.prism-theme .prism-tab-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--prism-text-muted);
    margin: 0 0 20px;
}

body.prism-theme .prism-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--prism-blue);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
}

body.prism-theme .prism-link:hover {
    color: var(--prism-blue-dark);
    text-decoration: underline;
}

/* About block */
body.prism-theme .prism-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

body.prism-theme .prism-stats {
    display: flex;
    gap: 40px;
    margin-top: 28px;
}

body.prism-theme .prism-stat span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--prism-blue);
}

body.prism-theme .prism-stat p {
    font-size: 14px;
    color: var(--prism-text-muted);
    margin: 4px 0 0;
}

/* Portfolio showcase */
body.prism-theme .prism-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 0;
}

body.prism-theme .prism-showcase:nth-child(even) .prism-showcase-image {
    order: 2;
}

body.prism-theme .prism-showcase-image {
    position: relative;
    overflow: hidden;
    min-height: 360px;
}

body.prism-theme .prism-showcase-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

body.prism-theme .prism-showcase-content {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--prism-blue-light);
}

body.prism-theme .prism-showcase:nth-child(even) .prism-showcase-content {
    background: var(--prism-white);
}

body.prism-theme .prism-showcase-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 16px;
    color: var(--prism-text);
}

body.prism-theme .prism-showcase-content p {
    color: var(--prism-text-muted);
    line-height: 1.7;
    margin: 0 0 20px;
}

body.prism-theme .prism-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

body.prism-theme .prism-tech-tag {
    background: var(--prism-white);
    border: 1px solid var(--prism-border);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--prism-text-muted);
}

body.prism-theme .prism-live-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Connect / intro */
body.prism-theme .prism-connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

body.prism-theme .prism-connect-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

body.prism-theme .prism-connect-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    color: var(--prism-text-muted);
    line-height: 1.6;
}

body.prism-theme .prism-connect-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: var(--prism-blue);
    border-radius: 50%;
}

body.prism-theme .prism-connect-image img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
    max-height: 400px;
}

/* FAQ */
body.prism-theme .prism-faq .qna {
    border-bottom: 1px solid var(--prism-border);
    padding: 4px 0;
}

body.prism-theme .prism-faq .question {
    font-size: 17px;
    font-weight: 600;
    padding: 18px 32px 18px 0;
    cursor: pointer;
    position: relative;
    margin: 0;
    color: var(--prism-text);
}

body.prism-theme .prism-faq .question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--prism-blue);
    font-weight: 400;
}

body.prism-theme .prism-faq .qna.active .question::after {
    content: '−';
}

body.prism-theme .prism-faq .answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

body.prism-theme .prism-faq .answer > * {
    padding-bottom: 18px;
    color: var(--prism-text-muted);
    line-height: 1.7;
}

/* Footer */
body.prism-theme footer {
    background: var(--prism-footer-bg);
    color: rgba(255, 255, 255, 0.85);
    padding: 56px 0 32px;
}

body.prism-theme footer h6 {
    color: var(--prism-white);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.prism-theme footer a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
}

body.prism-theme footer a:hover {
    color: var(--prism-white);
}

body.prism-theme footer .ftr-nav ul li {
    margin-bottom: 10px;
}

body.prism-theme footer .top-footer > .site-row > .site-col:last-child {
    border-left: none;
}

body.prism-theme footer .ftr-company-name {
    color: rgba(255, 255, 255, 0.9);
}

body.prism-theme footer .footer-ssl-banner {
    border-top-color: rgba(255, 255, 255, 0.15);
}

body.prism-theme footer .bottom-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
    margin-top: 32px;
}

body.prism-theme footer .site-copyright,
body.prism-theme footer .site-copyright span {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 14px;
}

body.prism-theme footer a.go-top {
    color: rgba(255, 255, 255, 0.75);
}

body.prism-theme footer .ftr-social a img {
    filter: brightness(0) invert(1);
    opacity: 0.75;
}

body.prism-theme footer .ftr-social a:hover img {
    opacity: 1;
}

/* Hide old theme elements */
body.prism-theme .blob,
body.prism-theme .bg-lines,
body.prism-theme .slide-text,
body.prism-theme .hero-images,
body.prism-theme .sub-heading {
    display: none !important;
}

body.prism-theme .site-wrapper {
    max-width: 1400px;
    padding: 50px;
}

body.prism-theme .site-btn {
    background: var(--prism-blue);
}

body.prism-theme .site-btn:hover {
    background: var(--prism-blue-dark);
}

/* Inner pages */
body.prism-theme .prism-inner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

body.prism-theme .prism-content-heading {
    font-size: 24px;
    font-weight: 600;
    color: var(--prism-text);
    margin: 0 0 20px;
}

body.prism-theme .prism-content-subheading {
    font-size: 18px;
    font-weight: 600;
    color: var(--prism-text);
    margin: 28px 0 14px;
}

body.prism-theme .prism-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

body.prism-theme .prism-feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--prism-blue-light);
    border-radius: 8px;
    border: 1px solid var(--prism-border);
}

body.prism-theme .prism-feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--prism-text);
}

body.prism-theme .prism-feature-item p {
    font-size: 15px;
    color: var(--prism-text-muted);
    margin: 0;
    line-height: 1.6;
}

body.prism-theme .prism-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--prism-white);
    border-radius: 8px;
    border: 1px solid var(--prism-border);
}

body.prism-theme .prism-stat-bar {
    background: var(--prism-blue);
    color: var(--prism-white);
    padding: 56px 0;
}

body.prism-theme .prism-stat-bar-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: var(--prism-white);
    margin: 0 0 36px;
}

body.prism-theme .prism-stat-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

body.prism-theme .prism-stat-bar-item span {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: var(--prism-white);
}

body.prism-theme .prism-stat-bar-item p {
    font-size: 15px;
    opacity: 0.9;
    margin: 6px 0 0;
}

body.prism-theme .prism-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

body.prism-theme .prism-service-card {
    padding: 32px;
    border: 1px solid var(--prism-border);
    border-radius: 8px;
    background: var(--prism-white);
    transition: box-shadow 0.2s;
}

body.prism-theme .prism-service-card:hover {
    box-shadow: 0 8px 24px rgba(43, 94, 167, 0.1);
}

body.prism-theme .prism-service-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--prism-blue-light);
    border-radius: 8px;
    margin-bottom: 16px;
}

body.prism-theme .prism-service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--prism-text);
}

body.prism-theme .prism-service-card > p {
    font-size: 15px;
    color: var(--prism-text-muted);
    line-height: 1.6;
    margin: 0 0 16px;
}

body.prism-theme .prism-service-benefits {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

body.prism-theme .prism-service-benefits li {
    font-size: 14px;
    color: var(--prism-text-muted);
    padding-left: 16px;
    position: relative;
    margin-bottom: 6px;
}

body.prism-theme .prism-service-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--prism-blue);
    font-size: 12px;
}

body.prism-theme .prism-form-group {
    margin-bottom: 20px;
}

body.prism-theme .prism-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--prism-text);
    margin-bottom: 6px;
}

body.prism-theme .prism-form-group input,
body.prism-theme .prism-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--prism-border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 16px;
    background: var(--prism-white);
}

body.prism-theme .prism-form-group input:focus,
body.prism-theme .prism-form-group textarea:focus {
    outline: none;
    border-color: var(--prism-blue);
}

body.prism-theme .prism-form-error {
    display: block;
    color: #dc3545;
    font-size: 13px;
    margin-top: 4px;
}

body.prism-theme .prism-btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--prism-blue);
    color: var(--prism-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

body.prism-theme .prism-btn-solid:hover:not(:disabled) {
    background: var(--prism-blue-dark);
}

body.prism-theme .prism-btn-solid:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

body.prism-theme .prism-contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

body.prism-theme .prism-contact-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--prism-text);
    margin-bottom: 4px;
}

body.prism-theme .prism-contact-item p {
    font-size: 15px;
    color: var(--prism-text-muted);
    margin: 0;
    line-height: 1.6;
}

body.prism-theme .prism-contact-item a {
    color: var(--prism-blue);
}

body.prism-theme .prism-alert {
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 15px;
}

body.prism-theme .prism-alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

body.prism-theme .prism-alert-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

body.prism-theme .prism-process-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 720px;
    margin: 0 auto;
}

body.prism-theme .prism-process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    border: 1px solid var(--prism-border);
    border-radius: 8px;
    background: var(--prism-white);
}

body.prism-theme .prism-process-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--prism-blue);
    color: var(--prism-white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
}

body.prism-theme .prism-process-step h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--prism-text);
}

body.prism-theme .prism-process-step p {
    font-size: 15px;
    color: var(--prism-text-muted);
    margin: 0;
    line-height: 1.6;
}

body.prism-theme .prism-prose {
    color: var(--prism-text-muted);
    line-height: 1.7;
}

body.prism-theme .prism-prose h2,
body.prism-theme .prism-prose h3 {
    color: var(--prism-text);
    margin-top: 28px;
}

body.prism-theme .prism-legal-content {
    max-width: 860px;
    margin: 0 auto;
}

body.prism-theme .prism-legal-content h2 {
    font-size: 1.35rem;
    margin: 28px 0 12px;
}

body.prism-theme .prism-legal-content h3 {
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

body.prism-theme .prism-legal-content p,
body.prism-theme .prism-legal-content li {
    color: var(--prism-text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

body.prism-theme .prism-legal-content ul,
body.prism-theme .prism-legal-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

body.prism-theme .footer-legal-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    justify-content: center;
    padding: 20px 0 0;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

body.prism-theme .footer-legal-bar a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

body.prism-theme .footer-legal-bar a:hover {
    color: var(--prism-white);
}

body.prism-theme .prism-card-title-link {
    color: var(--prism-text);
    text-decoration: none;
}

body.prism-theme .prism-card-title-link:hover {
    color: var(--prism-blue);
}

body.prism-theme .prism-summary-card-image {
    display: block;
}

body.prism-theme .portfolio-title a {
    color: inherit;
    text-decoration: none;
}

body.prism-theme .portfolio-title a:hover {
    color: var(--prism-blue);
}

body.prism-theme .portfolio-image {
    display: block;
    text-decoration: none;
}

body.prism-theme .portfolio-card-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: auto;
}

body.prism-theme .prism-btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 2px solid var(--prism-blue);
    border-radius: 6px;
    background: var(--prism-blue);
    color: var(--prism-white);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

body.prism-theme .prism-btn-solid:hover {
    background: var(--prism-blue-dark);
    border-color: var(--prism-blue-dark);
    color: var(--prism-white);
}

/* Portfolio product page (Prism WorkPath Connect style) */
body.prism-theme .prism-product-hero .prism-live-badge {
    top: 16px;
    right: 24px;
    z-index: 4;
}

body.prism-theme .prism-product-headline {
    padding-top: 0;
    padding-bottom: 0;
}

body.prism-theme .prism-product-line1 {
    display: block;
    color: var(--prism-white);
    font-weight: 100;
}

body.prism-theme .prism-product-line2 {
    display: block;
    color: var(--prism-green);
    margin-top: 10px;
    font-weight: 700;
}

body.prism-theme .prism-product-subnav {
    position: sticky;
    top: 72px;
    z-index: 100;
    background: var(--prism-blue-light);
    border-bottom: 1px solid var(--prism-border);
    box-shadow: 0 2px 8px rgba(43, 94, 167, 0.06);
}

body.prism-theme .prism-product-subnav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 60px;
    padding-top: 8px;
    padding-bottom: 8px;
}

body.prism-theme .prism-product-subnav-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    min-width: 0;
}

body.prism-theme .prism-product-subnav-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--prism-blue);
    margin: 0;
    white-space: nowrap;
}

body.prism-theme .prism-product-subnav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--prism-blue);
    cursor: pointer;
    border-radius: 4px;
}

body.prism-theme .prism-product-subnav-toggle:hover {
    background: rgba(43, 94, 167, 0.08);
}

body.prism-theme .prism-product-subnav-links.prism-tabs {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-left: 16px;
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
    flex: 1;
}

body.prism-theme .prism-product-subnav-links .prism-tab {
    padding: 16px 20px;
    margin-bottom: 0;
    font-size: 15px;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

body.prism-theme .prism-product-subnav-links .prism-tab[aria-selected="true"] {
    background: rgba(255, 255, 255, 0.55);
}

body.prism-theme .prism-product-subnav-cta {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}

body.prism-theme .prism-product-body {
    padding-top: 56px;
    padding-bottom: 72px;
}

/* body.prism-theme .prism-product-content {
    max-width: 960px;
} */

body.prism-theme .prism-product-content .prism-tab-panel-wrap {
    display: none;
}

body.prism-theme .prism-product-content .prism-tab-panel-wrap.is-active {
    display: block;
}

body.prism-theme .prism-product-section {
    margin-bottom: 0;
}

body.prism-theme .prism-product-section h4 {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--prism-text);
    margin: 0 0 20px;
    line-height: 1.35;
    text-transform: none;
    letter-spacing: normal;
}

body.prism-theme .prism-product-section h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--prism-text-muted);
    margin: 0 0 20px;
}

body.prism-theme .prism-product-section > p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--prism-text-muted);
    margin: 0;
    max-width: 820px;
}

body.prism-theme .prism-product-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

body.prism-theme .prism-product-split-text h4 {
    font-weight: 700;
    margin-bottom: 24px;
}

body.prism-theme .prism-product-split-text p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--prism-text-muted);
    margin: 0;
}

body.prism-theme .prism-product-split-image img {
    width: 100%;
    display: block;
    object-fit: contain;
    max-height: 420px;
}

body.prism-theme .prism-product-feature-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

body.prism-theme .prism-product-feature-col h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--prism-text);
    margin: 0 0 14px;
}

body.prism-theme .prism-product-feature-col p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--prism-text-muted);
    margin: 0;
}

body.prism-theme .prism-product-text-block {
    margin-bottom: 40px;
}

body.prism-theme .prism-product-text-block h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

body.prism-theme .prism-product-text-block p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--prism-text-muted);
    margin: 0;
    max-width: 820px;
}

body.prism-theme .prism-product-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.prism-theme .prism-product-checklist li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    color: var(--prism-text-muted);
    line-height: 1.6;
    font-size: 16px;
}

body.prism-theme .prism-product-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: var(--prism-blue);
    border-radius: 50%;
}

body.prism-theme .prism-portfolio-section {
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
}

body.prism-theme .prism-portfolio-section-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

body.prism-theme .prism-portfolio-section-inner {
    position: relative;
    z-index: 1;
}

body.prism-theme .prism-portfolio-section-line {
    position: relative;
    z-index: 1;
    border: 0;
    border-top: 1px solid var(--prism-border);
    margin: 0;
}

body.prism-theme .prism-portfolio-section-inner h4,
body.prism-theme .prism-portfolio-section-inner .prism-product-section-heading {
    color: var(--section-heading-color, var(--prism-text));
}

body.prism-theme .prism-portfolio-section-inner h5 {
    color: var(--section-subheading-color, var(--prism-blue));
}

body.prism-theme .prism-portfolio-section-inner p,
body.prism-theme .prism-portfolio-section-inner .prism-prose,
body.prism-theme .prism-portfolio-section-inner .prism-prose p,
body.prism-theme .prism-portfolio-section-inner li {
    color: var(--section-text-color, var(--prism-text-muted));
}

body.prism-theme .prism-product-content .prism-portfolio-section:last-child {
    margin-bottom: 0;
}

body.prism-theme .prism-product-split-reverse .prism-product-split-image {
    order: -1;
}

body.prism-theme .prism-product-feature-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

body.prism-theme .prism-product-section-heading {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--prism-text);
    margin: 0 0 24px;
}

body.prism-theme .prism-product-figure {
    margin: 0 0 40px;
}

body.prism-theme .prism-product-figure img {
    width: 100%;
    display: block;
    object-fit: contain;
    max-height: 480px;
    border-radius: 6px;
}

body.prism-theme .prism-product-figure figcaption {
    margin-top: 12px;
    font-size: 14px;
    color: var(--prism-text-muted);
    text-align: center;
}

body.prism-theme .prism-product-inline-cta {
    margin: 40px 0;
    padding: 32px;
    background: var(--prism-blue-light);
    border-radius: 8px;
}

body.prism-theme .prism-product-inline-cta h4 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
}

body.prism-theme .prism-product-inline-cta p {
    margin: 0 0 20px;
    color: var(--prism-text-muted);
    line-height: 1.6;
}

body.prism-theme .prism-portfolio-section .prism-product-section,
body.prism-theme .prism-portfolio-section .prism-product-text-block,
body.prism-theme .prism-portfolio-section .prism-product-split,
body.prism-theme .prism-portfolio-section .prism-product-tech,
body.prism-theme .prism-portfolio-section .prism-product-inline-cta {
    margin-bottom: 0;
}

body.prism-theme .prism-product-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 8px;
}

body.prism-theme .prism-product-step h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--prism-text);
    margin: 0 0 12px;
}

body.prism-theme .prism-product-step p {
    font-size: 16px;
    color: var(--prism-text-muted);
    line-height: 1.7;
    margin: 0;
}

body.prism-theme .prism-product-cta .prism-cta-inner > div p {
    color: rgba(255, 255, 255, 0.85);
    margin: 12px 0 0;
    font-size: 16px;
    max-width: 560px;
    line-height: 1.6;
}

body.prism-theme .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    body.prism-theme .prism-mega-menu-grid--services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.prism-theme .prism-mega-menu-grid--portfolio {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    body.prism-theme .prism-topbar {
        display: none;
    }

    body.prism-theme .main-navigation {
        display: block;
        margin-left: auto;
    }

    body.prism-theme .prism-mobile-submenu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    body.prism-theme .prism-inner-grid,
    body.prism-theme .prism-service-grid {
        grid-template-columns: 1fr;
    }

    body.prism-theme .prism-stat-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body.prism-theme .prism-product-subnav-toggle {
        display: inline-flex;
    }

    body.prism-theme .prism-product-subnav-links.prism-tabs {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
        padding: 4px 0 8px;
    }

    body.prism-theme .prism-product-subnav-links.prism-tabs.is-open {
        display: flex;
    }

    body.prism-theme .prism-product-subnav-links .prism-tab {
        text-align: left;
        border-bottom: 1px solid var(--prism-border);
        border-left: 3px solid transparent;
        padding: 12px 16px;
    }

    body.prism-theme .prism-product-subnav-links .prism-tab[aria-selected="true"] {
        border-left-color: var(--prism-blue);
        border-bottom-color: var(--prism-border);
        background: rgba(255, 255, 255, 0.7);
    }

    body.prism-theme .prism-product-subnav-left {
        width: 100%;
    }

    body.prism-theme .prism-product-subnav-inner {
        flex-wrap: wrap;
    }

    body.prism-theme .prism-product-subnav-cta {
        margin-left: auto;
    }

    body.prism-theme .prism-product-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    body.prism-theme .prism-product-feature-cols,
    body.prism-theme .prism-product-steps {
        grid-template-columns: 1fr;
    }

    body.prism-theme .prism-tab-panel,
    body.prism-theme .prism-about-grid,
    body.prism-theme .prism-connect-grid,
    body.prism-theme .prism-showcase {
        grid-template-columns: 1fr;
    }

    body.prism-theme .prism-showcase:nth-child(even) .prism-showcase-image {
        order: 0;
    }

    body.prism-theme .prism-hero-image img {
        height: 320px;
    }

    body.prism-theme .prism-landing-hero .prism-hero-slide .prism-hero-image,
    body.prism-theme .prism-landing-hero .prism-hero-slide .prism-hero-image img {
        height: 100%;
        min-height: 100vh;
        min-height: 100dvh;
    }

    body.prism-theme .prism-hero-slider-controls {
        bottom: 20px;
        padding: 0 24px;
    }

    body.prism-theme .prism-hero-text {
        padding: 88px 24px 72px;
    }

    body.prism-theme .prism-landing-hero .prism-hero-slide .prism-hero-text {
        padding-top: 88px;
        padding-bottom: 88px;
    }

    body.prism-theme .prism-hero::before,
    body.prism-theme .prism-landing-hero .prism-hero-slide::before {
        width: 100%;
        max-width: none;
        background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.88) 70%,
            rgba(255, 255, 255, 0.45) 100%
        );
    }

    body.prism-theme .main-header,
    body.prism-theme .site-wrapper {
        padding-left: 24px;
        padding-right: 24px;
    }

    body.prism-theme .prism-showcase-content {
        padding: 36px 24px;
    }

    body.prism-theme .prism-happy-clients-section .site-wrapper {
        padding-left: 24px;
        padding-right: 24px;
    }

    body.prism-theme .prism-card-grid {
        grid-template-columns: 1fr;
    }

    body.prism-theme .prism-cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    body.prism-theme footer .top-footer > .site-row {
        flex-direction: column;
    }

    body.prism-theme footer .site-col {
        width: 100%;
        margin-bottom: 28px;
    }

    body.prism-theme .prism-tabs {
        flex-direction: column;
        border-bottom: none;
    }

    body.prism-theme .prism-tab {
        border-bottom: 1px solid var(--prism-border);
        border-left: 3px solid transparent;
        margin-bottom: 0;
    }

    body.prism-theme .prism-tab[aria-selected="true"] {
        border-left-color: var(--prism-blue);
        border-bottom-color: var(--prism-border);
        background: var(--prism-blue-light);
    }
}

/* Floating WhatsApp contact button */
body.prism-theme .prism-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px 12px 14px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.prism-theme .prism-whatsapp-float:hover {
    background: #1ebe57;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.42);
}

body.prism-theme .prism-whatsapp-float-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 28px;
    line-height: 1;
}

body.prism-theme .prism-whatsapp-float-label {
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 768px) {
    body.prism-theme .prism-whatsapp-float {
        right: 16px;
        bottom: 16px;
        padding: 12px 14px;
    }

    body.prism-theme .prism-whatsapp-float-label {
        font-size: 14px;
    }
}
