:root {
    --orange: #ff6a00;
    --orange-light: #ff8a33;
    --orange-dark: #d94f00;
    --black: #080809;
    --charcoal: #101012;
    --charcoal-soft: #18181b;
    --white: #ffffff;
    --off-white: #f3f1ed;
    --grey: #a8a8ad;
    --grey-dark: #646469;
    --line-dark: rgba(255, 255, 255, 0.13);
    --line-light: rgba(8, 8, 9, 0.13);
    --container: 1440px;
    --radius: 1.5rem;
    --font-display: "Manrope", sans-serif;
    --font-body: "DM Sans", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

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

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 999;
    padding: 0.85rem 1.2rem;
    background: var(--white);
    color: var(--black);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-announcement {
    position: relative;
    z-index: 101;
    background: var(--orange);
    color: var(--black);
    font-size: 0.84rem;
    font-weight: 700;
}

.announcement-inner {
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.announcement-inner p {
    margin: 0;
}

.announcement-inner a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.site-header {
    position: absolute;
    top: 2.5rem;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line-dark);
    transition:
        background 220ms ease,
        border-color 220ms ease,
        transform 220ms ease;
}

.site-header.is-scrolled {
    position: fixed;
    top: 0;
    background: rgba(8, 8, 9, 0.9);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 5.4rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 3rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.08em;
}

.brand-mark {
    position: relative;
    width: 2.1rem;
    height: 2.1rem;
    display: inline-block;
}

.brand-mark span {
    position: absolute;
    display: block;
    width: 1.15rem;
    height: 0.55rem;
    background: var(--orange);
    border-radius: 1rem 0.2rem 1rem 0.2rem;
    transform: rotate(-38deg);
}

.brand-mark span:nth-child(1) {
    top: 0.1rem;
    right: 0.05rem;
}

.brand-mark span:nth-child(2) {
    top: 0.75rem;
    left: 0.45rem;
}

.brand-mark span:nth-child(3) {
    bottom: 0.05rem;
    left: 0;
}

.primary-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.25rem, 2.4vw, 2.7rem);
}

.primary-navigation a {
    position: relative;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 600;
}

.primary-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -0.55rem;
    height: 2px;
    background: var(--orange);
    transition: right 200ms ease;
}

.primary-navigation a:hover {
    color: var(--white);
}

.primary-navigation a:hover::after {
    right: 0;
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 3.3rem;
    padding: 0.7rem 1.3rem;
    font-size: 0.9rem;
    font-weight: 700;
    transition:
        transform 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.header-cta {
    background: var(--orange);
    color: var(--black);
}

.header-cta:hover,
.button:hover {
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    padding: 0.85rem;
    border: 1px solid var(--line-dark);
    background: transparent;
}

.mobile-menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 0.32rem 0;
    background: var(--white);
}

.hero {
    position: relative;
    min-height: 100svh;
    padding-top: 10rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    isolation: isolate;
}

.hero-visual {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(110deg, rgba(3, 3, 4, 0.98) 0%, rgba(8, 8, 9, 0.9) 45%, rgba(8, 8, 9, 0.4) 100%),
        radial-gradient(circle at 76% 42%, rgba(255, 106, 0, 0.28), transparent 33%),
        linear-gradient(145deg, #0a0a0d, #17171c 55%, #050506);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, var(--black), transparent 32%),
        linear-gradient(to right, rgba(0, 0, 0, 0.28), transparent);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.19;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 5rem 5rem;
    mask-image: linear-gradient(to left, black, transparent 75%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(5rem);
}

.hero-glow-one {
    width: 26rem;
    height: 26rem;
    right: 9%;
    top: 21%;
    background: rgba(255, 106, 0, 0.16);
}

.hero-glow-two {
    width: 16rem;
    height: 16rem;
    right: 32%;
    bottom: 10%;
    background: rgba(54, 87, 255, 0.08);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(23rem, 0.7fr);
    align-items: end;
    gap: clamp(3rem, 8vw, 9rem);
    padding-block: 7rem 5rem;
}

.eyebrow {
    margin: 0 0 1.5rem;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow-dark {
    color: var(--orange-dark);
}

.hero h1,
.about-section h2,
.section-heading-row h2,
.cta-section h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.07em;
    line-height: 0.95;
}

.hero h1 {
    max-width: 13ch;
    font-size: clamp(4rem, 8vw, 8.5rem);
}

.hero h1 span,
.about-section h2 span,
.section-heading-row h2 span {
    display: block;
    color: var(--orange);
}

.hero-description {
    max-width: 42rem;
    margin: 2rem 0 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.75;
}

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

.button-primary {
    background: var(--orange);
    color: var(--black);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
}

.button-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.hero-panel {
    padding: 1.5rem;
    border: 1px solid var(--line-dark);
    background: rgba(18, 18, 20, 0.72);
    backdrop-filter: blur(20px);
}

.status-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding-bottom: 1.3rem;
    color: var(--grey);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line-dark);
}

.status-light {
    width: 0.55rem;
    height: 0.55rem;
    background: #42e287;
    border-radius: 50%;
    box-shadow: 0 0 1rem rgba(66, 226, 135, 0.8);
}

.hero-panel-heading {
    padding: 2rem 0;
}

.hero-panel-heading span {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--grey);
}

.hero-panel-heading strong {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.4vw, 2.5rem);
    letter-spacing: -0.045em;
}

.hero-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
}

.hero-metrics article {
    min-height: 8rem;
    padding: 1.25rem;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.hero-metrics strong {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--orange);
    font-family: var(--font-display);
    font-size: 1.7rem;
}

.hero-metrics span {
    color: var(--grey);
    font-size: 0.82rem;
}

.system-lines {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
    margin-top: 1.5rem;
}

.system-lines span {
    height: 0.2rem;
    background: var(--orange);
    animation: systemPulse 2s ease-in-out infinite;
}

.system-lines span:nth-child(2) {
    animation-delay: 180ms;
}

.system-lines span:nth-child(3) {
    animation-delay: 360ms;
}

.system-lines span:nth-child(4) {
    animation-delay: 540ms;
}

@keyframes systemPulse {
    0%,
    100% {
        opacity: 0.2;
        transform: scaleX(0.55);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.hero-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2rem;
    color: var(--grey);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-footer a {
    display: grid;
    place-items: center;
    width: 3.2rem;
    height: 3.2rem;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
}

.hero-footer a span {
    width: 0.5rem;
    height: 0.5rem;
    border-right: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    transform: rotate(45deg) translate(-2px, -2px);
}

.trusted-section {
    padding: 3.5rem 0;
    background: var(--black);
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    overflow: hidden;
}

.section-label {
    margin: 0 0 2rem;
    color: var(--grey-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.logo-marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logo-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: clamp(3.5rem, 7vw, 8rem);
    animation: marquee 30s linear infinite;
}

.logo-track span {
    color: rgba(255, 255, 255, 0.42);
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.5rem);
    font-weight: 800;
    white-space: nowrap;
}

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

.about-section {
    padding: clamp(6rem, 12vw, 12rem) 0;
    background: var(--off-white);
    color: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(4rem, 10vw, 10rem);
}

.about-section h2,
.section-heading-row h2 {
    max-width: 13ch;
    font-size: clamp(3rem, 6vw, 6.7rem);
}

.about-copy {
    padding-top: 3rem;
}

.about-lead {
    margin-top: 0;
    color: var(--black);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.1vw, 2rem);
    font-weight: 600;
    line-height: 1.4;
}

.about-copy > p:not(.about-lead) {
    color: #56565b;
    font-size: 1.05rem;
    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding-bottom: 0.35rem;
    font-weight: 700;
    border-bottom: 1px solid currentColor;
}

.services-section {
    padding: clamp(6rem, 12vw, 12rem) 0;
    background: var(--charcoal);
}

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 5rem;
}

.section-heading-row h2 span {
    color: var(--grey-dark);
}

.text-link-light {
    flex: 0 0 auto;
    color: var(--white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
}

.service-card {
    position: relative;
    min-height: 25rem;
    padding: 2rem;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    overflow: hidden;
    transition:
        background 250ms ease,
        color 250ms ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: auto -4rem -8rem auto;
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.12);
    filter: blur(2rem);
    transition: transform 350ms ease;
}

.service-card:hover {
    background: var(--orange);
    color: var(--black);
}

.service-card:hover::before {
    transform: scale(1.4);
}

.service-number {
    color: var(--grey-dark);
    font-size: 0.75rem;
    font-weight: 700;
}

.service-card h3 {
    max-width: 8ch;
    margin: 5rem 0 1.4rem;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.6vw, 3rem);
    letter-spacing: -0.05em;
    line-height: 1;
}

.service-card p {
    max-width: 24rem;
    color: var(--grey);
    line-height: 1.7;
}

.service-card:hover p,
.service-card:hover .service-number {
    color: rgba(0, 0, 0, 0.66);
}

.service-arrow {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    font-size: 1.6rem;
}

.projects-section {
    padding: clamp(6rem, 12vw, 12rem) 0;
    background: var(--off-white);
    color: var(--black);
}

.section-heading-dark h2 span {
    color: #a09e99;
}

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

.project-card {
    background: var(--white);
}

.project-featured {
    grid-row: span 2;
}

.project-art {
    min-height: 22rem;
    padding: 2rem;
    display: flex;
    align-items: end;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 106, 0, 0.9), transparent 27%),
        linear-gradient(145deg, #111116, #25252d);
}

.project-featured .project-art {
    min-height: 46rem;
}

.project-art span {
    padding: 0.65rem 0.9rem;
    background: rgba(0, 0, 0, 0.56);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(10px);
}

.project-art-call {
    background:
        linear-gradient(125deg, rgba(255, 106, 0, 0.75), transparent 45%),
        repeating-linear-gradient(90deg, #0b0b0d 0 2rem, #17171c 2rem 2.1rem);
}

.project-art-bus {
    background:
        radial-gradient(circle at 20% 25%, rgba(255, 106, 0, 0.8), transparent 25%),
        linear-gradient(145deg, #15151b, #30303a);
}

.project-art-mall {
    background:
        linear-gradient(145deg, rgba(255, 106, 0, 0.9), rgba(255, 106, 0, 0.05)),
        #121215;
}

.project-content {
    padding: 2rem;
}

.project-content p {
    margin: 0 0 0.8rem;
    color: var(--orange-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-content h3 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 3rem);
    letter-spacing: -0.05em;
}

.project-content span {
    display: block;
    max-width: 35rem;
    color: #66666b;
    line-height: 1.7;
}

.cta-section {
    padding: clamp(6rem, 12vw, 11rem) 0;
    background: var(--orange);
    color: var(--black);
}

.cta-inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 4rem;
}

.cta-section .eyebrow {
    position: absolute;
}

.cta-section h2 {
    max-width: 12ch;
    padding-top: 3rem;
    font-size: clamp(3.5rem, 7vw, 8rem);
}

.button-dark {
    flex: 0 0 auto;
    min-width: 12rem;
    background: var(--black);
    color: var(--white);
}

.modern-footer {
    padding: 6rem 0 2rem;
    background: var(--black);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
    padding-bottom: 5rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-grid > div:first-child p {
    max-width: 28rem;
    color: var(--grey);
    line-height: 1.7;
}

.footer-grid h3 {
    margin: 0 0 1.5rem;
    color: var(--grey-dark);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
}

.footer-grid a,
.footer-grid span {
    color: var(--grey);
}

.footer-grid a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line-dark);
    color: var(--grey-dark);
    font-size: 0.8rem;
}

.reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition:
        opacity 700ms ease,
        transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1050px) {
    .header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .primary-navigation {
        position: fixed;
        inset: 0;
        z-index: -1;
        padding: 9rem 2rem 3rem;
        background: var(--black);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        transform: translateX(100%);
        transition: transform 300ms ease;
    }

    .primary-navigation.is-open {
        transform: translateX(0);
    }

    .primary-navigation a {
        font-family: var(--font-display);
        font-size: clamp(2rem, 7vw, 4rem);
        font-weight: 700;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 42rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-copy {
        max-width: 45rem;
        padding-top: 0;
    }

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

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

    .footer-grid > div:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 2rem), var(--container));
    }

    .announcement-inner {
        justify-content: center;
        min-height: 2.8rem;
    }

    .announcement-inner p {
        display: none;
    }

    .site-header {
        top: 2.8rem;
    }

    .site-header.is-scrolled {
        top: 0;
    }

    .hero {
        padding-top: 8rem;
    }

    .hero-inner {
        padding-block: 5rem 3rem;
    }

    .hero h1 {
        font-size: clamp(3.25rem, 16vw, 5.5rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-panel {
        padding: 1rem;
    }

    .hero-metrics article {
        min-height: 7rem;
        padding: 1rem;
    }

    .hero-footer {
        display: none;
    }

    .about-section h2,
    .section-heading-row h2 {
        font-size: clamp(2.8rem, 13vw, 4.5rem);
    }

    .section-heading-row {
        display: block;
        margin-bottom: 3rem;
    }

    .section-heading-row .text-link {
        margin-top: 2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 21rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-featured {
        grid-row: auto;
    }

    .project-featured .project-art,
    .project-art {
        min-height: 24rem;
    }

    .cta-inner {
        display: block;
    }

    .cta-section h2 {
        margin-bottom: 3rem;
        font-size: clamp(3.2rem, 15vw, 5.5rem);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2rem;
    }

    .footer-grid > div:first-child,
    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

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

/* =========================================================
   HOZIT V5 PHASE 2
   ========================================================= */

.brand-logo {
    display: block;
    width: clamp(8.5rem, 12vw, 11rem);
    height: auto;
    object-fit: contain;
}

.footer-brand .brand-logo {
    width: 10rem;
}

.client-logo {
    width: clamp(9rem, 13vw, 13rem);
    height: 5rem;
    margin: 0;
    padding: 1rem 1.4rem;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 0.3rem;
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.68;
    transition:
        filter 200ms ease,
        opacity 200ms ease,
        transform 200ms ease;
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

.section-side-copy {
    max-width: 30rem;
    margin: 0;
    color: var(--grey);
    font-size: 1rem;
    line-height: 1.8;
}

.industries-section {
    padding: clamp(6rem, 12vw, 12rem) 0;
    background: var(--black);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
}

.industry-card {
    position: relative;
    min-height: 22rem;
    padding: 2rem;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    transition:
        background 220ms ease,
        color 220ms ease;
}

.industry-card:hover {
    background: var(--orange);
    color: var(--black);
}

.industry-index {
    color: var(--grey-dark);
    font-size: 0.72rem;
    font-weight: 700;
}

.industry-card h3 {
    max-width: 10ch;
    margin: 4.5rem 0 1.2rem;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.3vw, 2.6rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.industry-card p {
    max-width: 22rem;
    margin: 0;
    color: var(--grey);
    line-height: 1.7;
}

.industry-card:hover p,
.industry-card:hover .industry-index {
    color: rgba(0, 0, 0, 0.68);
}

.industry-arrow {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    font-size: 1.5rem;
}

.impact-section {
    position: relative;
    padding: clamp(6rem, 12vw, 12rem) 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 106, 0, 0.22), transparent 30%),
        linear-gradient(145deg, #151519, #080809 65%);
}

.impact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 5rem 5rem;
}

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

.impact-header {
    margin-bottom: 5rem;
}

.impact-header h2 {
    max-width: 13ch;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 6.8rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.impact-header h2 span {
    display: block;
    color: var(--orange);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
}

.impact-card {
    min-height: 18rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.impact-card strong {
    color: var(--orange);
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 5vw, 6rem);
    line-height: 0.9;
    letter-spacing: -0.08em;
}

.impact-card span {
    max-width: 13rem;
    color: var(--grey);
    line-height: 1.5;
}

.testimonials-section {
    padding: clamp(6rem, 12vw, 12rem) 0;
    background: var(--off-white);
    color: var(--black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr;
    gap: 1.5rem;
}

.testimonial-card {
    position: relative;
    min-height: 25rem;
    margin: 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
}

.testimonial-featured {
    grid-row: span 2;
    min-height: 52rem;
    background: var(--orange);
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 0.7;
}

.testimonial-card > p {
    margin: auto 0;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.3vw, 2.75rem);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.04em;
}

.testimonial-featured > p {
    font-size: clamp(2rem, 4vw, 4.5rem);
    line-height: 1.13;
}

.testimonial-card footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--black);
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 800;
}

.testimonial-card footer div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-card footer div span {
    color: #737379;
    font-size: 0.82rem;
}

.testimonial-featured footer div span {
    color: rgba(0, 0, 0, 0.62);
}

.insights-section {
    padding: clamp(6rem, 12vw, 12rem) 0;
    background: var(--charcoal);
}

.insights-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr;
    gap: 1.5rem;
}

.insight-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 21rem;
    background: var(--black);
    transition: transform 220ms ease;
}

.insight-card:hover {
    transform: translateY(-0.4rem);
}

.insight-card-large {
    grid-row: span 2;
    display: block;
}

.insight-visual {
    min-height: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: end;
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 106, 0, 0.75), transparent 28%),
        linear-gradient(145deg, #131318, #292934);
}

.insight-card-large .insight-visual {
    min-height: 33rem;
}

.insight-visual span {
    padding: 0.55rem 0.8rem;
    background: rgba(0, 0, 0, 0.54);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.insight-support {
    background:
        linear-gradient(125deg, rgba(255, 106, 0, 0.7), transparent 50%),
        repeating-linear-gradient(90deg, #101014 0 1.6rem, #1d1d23 1.6rem 1.7rem);
}

.insight-recovery {
    background:
        radial-gradient(circle at 75% 25%, rgba(255, 106, 0, 0.8), transparent 23%),
        linear-gradient(145deg, #1d1d24, #09090b);
}

.insight-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.insight-content p {
    margin: 0 0 1rem;
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.insight-content h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.1vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.insight-content > span {
    margin-top: auto;
    padding-top: 2rem;
    color: var(--grey);
    font-size: 0.85rem;
}

@media (max-width: 1100px) {
    .industries-grid,
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid,
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-featured,
    .insight-card-large {
        grid-row: auto;
    }

    .testimonial-featured {
        min-height: 38rem;
    }
}

@media (max-width: 720px) {
    .brand-logo {
        width: 8.5rem;
    }

    .section-side-copy {
        margin-top: 2rem;
    }

    .industries-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        min-height: 19rem;
    }

    .impact-card {
        min-height: 14rem;
    }

    .testimonial-card,
    .testimonial-featured {
        min-height: 30rem;
        padding: 1.7rem;
    }

    .insight-card {
        grid-template-columns: 1fr;
    }

    .insight-visual,
    .insight-card-large .insight-visual {
        min-height: 19rem;
    }
}

/* =========================================================
   GENERATED CONCEPT ALIGNMENT
   ========================================================= */

.site-announcement {
    display: none;
}

.site-header,
.site-header.is-scrolled {
    top: 0;
}

.site-header {
    position: absolute;
    background: rgba(0, 0, 0, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
    position: fixed;
    background: rgba(0, 0, 0, 0.93);
}

.header-inner {
    min-height: 9rem;
    grid-template-columns: 16rem 1fr auto;
}

.brand {
    min-width: 0;
}

.brand-logo {
    width: 14.5rem;
    max-height: 6rem;
    object-fit: contain;
    object-position: left center;
}

.primary-navigation {
    gap: clamp(1.5rem, 3vw, 3.5rem);
}

.primary-navigation a {
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-display);
    font-size: 1rem;
}

.header-cta {
    min-height: 5rem;
    padding-inline: 2.1rem;
    background: var(--orange);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 1rem;
}

.concept-hero {
    position: relative;
    min-height: 49rem;
    padding-top: 9rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 83% 45%,
            rgba(255, 94, 0, 0.24),
            transparent 28%
        ),
        linear-gradient(120deg, #020203 0%, #050505 58%, #120904 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.concept-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );
    background-size: 5rem 5rem;
    mask-image: linear-gradient(to left, black, transparent 75%);
}

.concept-hero-glow {
    position: absolute;
    right: -8rem;
    top: 7rem;
    width: 45rem;
    height: 45rem;
    border-radius: 50%;
    background: rgba(255, 91, 0, 0.1);
    filter: blur(5rem);
}

.concept-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 4rem;
    padding-block: 7rem 5rem;
}

.concept-kicker {
    margin: 0 0 1.4rem;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.concept-hero h1 {
    max-width: 13ch;
    margin: 0;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(4rem, 6.4vw, 7.2rem);
    font-weight: 700;
    line-height: 0.97;
    letter-spacing: -0.07em;
}

.concept-hero h1 span {
    color: var(--orange);
}

.concept-description {
    max-width: 39rem;
    margin: 2rem 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(1rem, 1.25vw, 1.2rem);
    line-height: 1.72;
}

.concept-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.7rem;
}

.concept-primary-button {
    min-height: 4.4rem;
    padding: 0 1.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--orange);
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 800;
}

.concept-text-button {
    padding-bottom: 0.45rem;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    border-bottom: 2px solid var(--orange);
}

.concept-globe {
    position: relative;
    width: min(43rem, 45vw);
    aspect-ratio: 1;
    justify-self: end;
}

.globe-sphere {
    position: absolute;
    inset: 7%;
    overflow: hidden;
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 62% 30%,
            rgba(255, 130, 42, 0.26),
            transparent 24%
        ),
        radial-gradient(
            circle at 45% 48%,
            #251007,
            #070504 61%,
            #010101 78%
        );
    border: 1px solid rgba(255, 106, 0, 0.55);
    box-shadow:
        inset -3rem -2rem 6rem rgba(0, 0, 0, 0.96),
        inset 1.8rem 0 4rem rgba(255, 106, 0, 0.08),
        2rem 0 5rem rgba(255, 80, 0, 0.23);
}

.globe-grid {
    position: absolute;
    inset: -10%;
    opacity: 0.42;
    border-radius: 50%;
    background-image:
        repeating-radial-gradient(
            ellipse at center,
            transparent 0 2.1rem,
            rgba(255, 106, 0, 0.3) 2.15rem 2.2rem
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0 3rem,
            rgba(255, 106, 0, 0.22) 3.05rem 3.1rem
        );
    transform: perspective(38rem) rotateY(-18deg);
}

.globe-continent {
    position: absolute;
    left: 31%;
    top: 23%;
    width: 34%;
    height: 53%;
    background:
        radial-gradient(
            circle,
            rgba(255, 109, 17, 0.92) 0 1.4px,
            transparent 1.8px
        );
    background-size: 0.55rem 0.55rem;
    clip-path: polygon(
        45% 0,
        76% 9%,
        97% 32%,
        76% 49%,
        64% 69%,
        52% 100%,
        33% 86%,
        28% 66%,
        4% 50%,
        19% 30%,
        14% 13%
    );
    filter: drop-shadow(0 0 0.8rem rgba(255, 106, 0, 0.7));
}

.globe-orbit {
    position: absolute;
    left: -6%;
    right: -6%;
    top: 46%;
    height: 21%;
    border: 2px solid rgba(255, 106, 0, 0.78);
    border-radius: 50%;
    transform: rotate(-14deg);
    box-shadow: 0 0 1.4rem rgba(255, 106, 0, 0.35);
}

.globe-orbit-two {
    top: 42%;
    transform: rotate(18deg);
    opacity: 0.42;
}

.globe-node {
    position: absolute;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #fff2d9;
    box-shadow:
        0 0 0.7rem #fff,
        0 0 1.6rem var(--orange),
        0 0 3rem var(--orange);
}

.node-one {
    left: 37%;
    top: 32%;
}

.node-two {
    left: 54%;
    top: 41%;
}

.node-three {
    left: 43%;
    top: 58%;
}

.node-four {
    right: 21%;
    top: 35%;
}

.trusted-section {
    padding: 2rem 0 2.8rem;
    background: #020203;
}

.trusted-section .section-label {
    margin-bottom: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: normal;
    text-transform: none;
    font-size: 0.95rem;
}

.logo-marquee {
    mask-image: none;
}

.logo-track {
    width: 100%;
    gap: 1rem;
    animation: none;
    justify-content: center;
}

.logo-track .client-logo:nth-child(n + 6) {
    display: none;
}

.client-logo {
    width: min(17%, 16rem);
    height: 6.4rem;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.055),
        rgba(255, 255, 255, 0.025)
    );
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.client-logo img {
    filter: none;
    opacity: 1;
}

@media (max-width: 1050px) {
    .header-inner {
        min-height: 6.5rem;
        grid-template-columns: auto auto;
    }

    .brand-logo {
        width: 11rem;
        max-height: 4rem;
    }

    .concept-hero {
        padding-top: 6.5rem;
    }

    .concept-hero-grid {
        grid-template-columns: 1fr;
    }

    .concept-globe {
        width: min(36rem, 82vw);
        justify-self: center;
    }
}

@media (max-width: 720px) {
    .concept-hero-grid {
        padding-block: 5rem 3rem;
    }

    .concept-hero h1 {
        font-size: clamp(3.2rem, 15vw, 5rem);
    }

    .concept-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .concept-primary-button {
        justify-content: center;
    }

    .concept-text-button {
        align-self: flex-start;
    }

    .concept-globe {
        width: 105vw;
        margin-right: -20vw;
    }

    .logo-track {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .client-logo {
        width: 100%;
    }

    .logo-track .client-logo:nth-child(5) {
        grid-column: 1 / -1;
    }
}

/* Refined dark-header logo */
.header-inner {
    min-height: 7.2rem;
    grid-template-columns: 13rem 1fr auto;
}

.brand-logo {
    width: 12rem;
    max-height: 4.8rem;
    object-fit: contain;
    object-position: left center;
}

.footer-brand .brand-logo {
    width: 11rem;
}

@media (max-width: 1050px) {
    .header-inner {
        min-height: 6rem;
        grid-template-columns: auto auto;
    }

    .brand-logo {
        width: 10rem;
        max-height: 4rem;
    }
}

@media (max-width: 720px) {
    .brand-logo {
        width: 8.8rem;
    }
}

/* Current Hozit-style client logo strip */
.trusted-section {
    padding: 2.4rem 0 3rem;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trusted-section .section-label {
    margin: 0 0 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    font-weight: 600;
}

.logo-marquee {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 5%,
        black 95%,
        transparent
    );
}

.logo-track {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: clamp(2.5rem, 6vw, 6rem);
    width: 100%;
    animation: none;
}

.client-logo {
    width: auto;
    min-width: 0;
    height: 5rem;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.client-logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 12rem;
    max-height: 4rem;
    object-fit: contain;
    filter: grayscale(1) brightness(1.65);
    opacity: 0.78;
    transition:
        filter 200ms ease,
        opacity 200ms ease,
        transform 200ms ease;
}

.client-logo:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

/* Individual optical sizing */
.client-logo:nth-child(1) img {
    max-height: 4.4rem;
}

.client-logo:nth-child(2) img {
    max-width: 11.5rem;
}

.client-logo:nth-child(3) img {
    max-height: 3.7rem;
}

.client-logo:nth-child(4) img {
    max-width: 12.5rem;
    max-height: 3.8rem;
}

.client-logo:nth-child(5) img {
    max-width: 11rem;
    max-height: 3.8rem;
}

@media (max-width: 850px) {
    .logo-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 1.5rem;
    }

    .client-logo {
        height: 4.5rem;
    }

    .client-logo img {
        max-width: 9rem;
        max-height: 3.4rem;
    }

    .client-logo:nth-child(4),
    .client-logo:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 560px) {
    .logo-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-logo:nth-child(5) {
        grid-column: 1 / -1;
    }
}

/* Continuous sliding client logo strip */
.logo-marquee {
    overflow: hidden;
}

.logo-track {
    display: flex;
    width: max-content;
    gap: 0;
    animation: hozitClientMarquee 28s linear infinite;
    will-change: transform;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: clamp(3rem, 6vw, 6rem);
    flex-shrink: 0;
    padding-right: clamp(3rem, 6vw, 6rem);
}

.logo-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex: 0 0 auto;
    width: 12rem;
    height: 5rem;
}

@keyframes hozitClientMarquee {
    from {
        transform: translateX(0);
    }

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

@media (max-width: 850px) {
    .logo-track {
        display: flex;
        animation-duration: 22s;
    }

    .logo-group {
        display: flex;
        gap: 2.5rem;
        padding-right: 2.5rem;
    }

    .client-logo {
        width: 9rem;
        height: 4.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-track {
        animation: none;
    }
}

/* =========================================================
   DARK TECHNOLOGY ECOSYSTEM
   ========================================================= */

.capabilities-intro {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: #050505;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.capabilities-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(4rem, 9vw, 10rem);
    align-items: start;
}

.capabilities-intro h2,
.technology-heading h2 {
    max-width: 14ch;
    margin: 0;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.7vw, 6.3rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.capabilities-intro h2 span,
.technology-heading h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.42);
}

.capabilities-intro-copy {
    padding-top: 2.7rem;
}

.capabilities-lead {
    margin: 0 0 1.5rem;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.03em;
}

.capabilities-intro-copy > p:not(.capabilities-lead) {
    max-width: 39rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 1rem;
    line-height: 1.8;
}

.technology-section {
    padding: clamp(5rem, 10vw, 10rem) 0;
    background:
        radial-gradient(
            circle at 85% 5%,
            rgba(255, 106, 0, 0.12),
            transparent 24%
        ),
        #080809;
}

.technology-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4.5rem;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.technology-card {
    position: relative;
    min-height: 26rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 240ms ease,
        border-color 240ms ease,
        background 240ms ease;
}

.technology-card::before {
    content: "";
    position: absolute;
    right: -7rem;
    bottom: -8rem;
    width: 17rem;
    height: 17rem;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.14);
    filter: blur(3.5rem);
    transition: transform 300ms ease;
}

.technology-card:hover {
    transform: translateY(-0.45rem);
    border-color: rgba(255, 106, 0, 0.7);
    background:
        linear-gradient(
            145deg,
            rgba(255, 106, 0, 0.16),
            rgba(255, 255, 255, 0.025)
        );
}

.technology-card:hover::before {
    transform: scale(1.5);
}

.technology-icon {
    position: relative;
    z-index: 1;
    width: 3.8rem;
    height: 3.8rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 106, 0, 0.48);
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.08);
    color: var(--orange);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
}

.technology-icon-windows {
    border-radius: 0.7rem;
}

.technology-card-content {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 4rem;
}

.technology-number {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.technology-card h3 {
    max-width: 11ch;
    margin: 1rem 0 1.2rem;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 2.6vw, 2.8rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.technology-card p {
    max-width: 23rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.54);
    line-height: 1.7;
}

.technology-arrow {
    position: absolute;
    right: 1.8rem;
    top: 1.8rem;
    color: var(--orange);
    font-size: 1.35rem;
    transition: transform 220ms ease;
}

.technology-card:hover .technology-arrow {
    transform: translate(0.2rem, -0.2rem);
}

@media (max-width: 1050px) {
    .capabilities-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .capabilities-intro-copy {
        max-width: 44rem;
        padding-top: 0;
    }

    .technology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .technology-heading {
        display: block;
        margin-bottom: 3rem;
    }

    .technology-heading .concept-text-button {
        display: inline-block;
        margin-top: 2rem;
    }

    .technology-grid {
        grid-template-columns: 1fr;
    }

    .technology-card {
        min-height: 22rem;
    }
}

/* =========================================================
   FEATURED PROJECT SHOWCASE
   ========================================================= */

.showcase-section {
    padding: clamp(5rem, 10vw, 10rem) 0;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4.5rem;
}

.showcase-heading h2 {
    max-width: 14ch;
    margin: 0;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.7vw, 6.2rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.showcase-heading h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.showcase-card {
    display: flex;
    flex-direction: column;
    min-height: 42rem;
    overflow: hidden;
    background: #0d0d0f;
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 240ms ease,
        border-color 240ms ease;
}

.showcase-card:hover {
    transform: translateY(-0.45rem);
    border-color: rgba(255, 106, 0, 0.62);
}

.showcase-card-large {
    grid-row: span 2;
    min-height: 85.25rem;
}

.showcase-visual {
    position: relative;
    min-height: 26rem;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(255, 106, 0, 0.42),
            transparent 29%
        ),
        linear-gradient(145deg, #15151a, #070708);
}

.showcase-card-large .showcase-visual {
    min-height: 61rem;
}

.showcase-tag {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    padding: 0.6rem 0.85rem;
    background: rgba(0, 0, 0, 0.68);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.showcase-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.showcase-content p {
    margin: 0 0 0.8rem;
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.showcase-content h3 {
    margin: 0 0 1rem;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 4rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.showcase-content div > span {
    display: block;
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.showcase-link {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
}

/* CRM visual */

.showcase-crm {
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle at 80% 17%,
            rgba(255, 106, 0, 0.45),
            transparent 26%
        ),
        linear-gradient(145deg, #17171c, #080809);
}

.dashboard-window {
    width: 82%;
    height: 67%;
    padding: 1rem;
    background: #111117;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 0.7rem;
    box-shadow:
        0 2rem 5rem rgba(0, 0, 0, 0.8),
        0 0 4rem rgba(255, 106, 0, 0.08);
    transform: perspective(65rem) rotateY(-6deg) rotateX(3deg);
}

.dashboard-topbar {
    height: 1.3rem;
    margin-bottom: 1rem;
    background:
        radial-gradient(
            circle at 0.5rem 50%,
            #ff6a00 0 0.18rem,
            transparent 0.2rem
        ),
        radial-gradient(
            circle at 1.2rem 50%,
            rgba(255, 255, 255, 0.45) 0 0.18rem,
            transparent 0.2rem
        ),
        radial-gradient(
            circle at 1.9rem 50%,
            rgba(255, 255, 255, 0.22) 0 0.18rem,
            transparent 0.2rem
        );
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 22% 1fr;
    gap: 1rem;
    height: calc(100% - 2.3rem);
}

.dashboard-sidebar {
    background:
        repeating-linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.08) 0 0.45rem,
            transparent 0.45rem 1.45rem
        );
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
}

.dashboard-stat-row span {
    height: 4rem;
    background:
        linear-gradient(
            145deg,
            rgba(255, 106, 0, 0.3),
            rgba(255, 255, 255, 0.04)
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-chart {
    flex: 1;
    min-height: 8rem;
    background:
        linear-gradient(
            to top right,
            transparent 45%,
            rgba(255, 106, 0, 0.7) 46% 47%,
            transparent 48%
        ),
        repeating-linear-gradient(
            to right,
            transparent 0 2rem,
            rgba(255, 255, 255, 0.04) 2rem 2.05rem
        ),
        repeating-linear-gradient(
            to bottom,
            transparent 0 2rem,
            rgba(255, 255, 255, 0.04) 2rem 2.05rem
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-table {
    display: grid;
    gap: 0.5rem;
}

.dashboard-table span {
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
}

/* Call centre visual */

.showcase-call-centre {
    display: grid;
    place-items: center;
    background:
        linear-gradient(
            125deg,
            rgba(255, 106, 0, 0.34),
            transparent 50%
        ),
        repeating-linear-gradient(
            90deg,
            #101014 0 2.6rem,
            #19191f 2.6rem 2.7rem
        );
}

.call-centre-interface {
    width: 78%;
    padding: 1.7rem;
    background: rgba(5, 5, 6, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.call-centre-status {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.call-centre-status span {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #36e27f;
    box-shadow: 0 0 1rem #36e27f;
}

.call-centre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
    margin: 2rem 0;
}

.call-centre-stats strong {
    padding: 1rem;
    color: var(--orange);
    font-family: var(--font-display);
    font-size: 1.7rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.045);
}

.call-centre-lines {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 6rem;
}

.call-centre-lines span {
    flex: 1;
    background: var(--orange);
}

.call-centre-lines span:nth-child(1) {
    height: 28%;
}

.call-centre-lines span:nth-child(2) {
    height: 70%;
}

.call-centre-lines span:nth-child(3) {
    height: 45%;
}

.call-centre-lines span:nth-child(4) {
    height: 88%;
}

.call-centre-lines span:nth-child(5) {
    height: 58%;
}

/* SmartBus visual */

.showcase-smartbus {
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255, 106, 0, 0.45),
            transparent 26%
        ),
        linear-gradient(145deg, #17171b, #060607);
}

.bus-illustration {
    position: relative;
    width: 72%;
    height: 11rem;
}

.bus-body {
    position: absolute;
    inset: 2.5rem 0 1.5rem;
    display: flex;
    align-items: center;
    padding-left: 2rem;
    border-radius: 1.8rem 2.8rem 0.8rem 0.8rem;
    background:
        linear-gradient(
            100deg,
            #ff6a00,
            #a83a00 70%,
            #301106
        );
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.7);
}

.bus-body strong {
    color: #111;
    font-family: var(--font-display);
    font-size: 1.6rem;
}

.bus-window-row {
    position: absolute;
    z-index: 2;
    left: 11%;
    right: 8%;
    top: 3.2rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.55rem;
}

.bus-window-row span {
    height: 2.6rem;
    border-radius: 0.35rem;
    background:
        linear-gradient(
            145deg,
            rgba(103, 163, 255, 0.78),
            rgba(5, 13, 24, 0.95)
        );
}

.bus-wheel {
    position: absolute;
    z-index: 3;
    bottom: 0.3rem;
    width: 2.7rem;
    height: 2.7rem;
    border: 0.55rem solid #111;
    border-radius: 50%;
    background: #666;
}

.bus-wheel-one {
    left: 18%;
}

.bus-wheel-two {
    right: 15%;
}

.travel-route {
    position: absolute;
    right: 8%;
    top: 15%;
    width: 8rem;
    height: 8rem;
    border: 1px dashed rgba(255, 106, 0, 0.6);
    border-radius: 50%;
}

.travel-route span {
    position: absolute;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 1rem var(--orange);
}

.travel-route span:nth-child(1) {
    left: 12%;
    top: 48%;
}

.travel-route span:nth-child(2) {
    right: 18%;
    top: 15%;
}

.travel-route span:nth-child(3) {
    right: 4%;
    bottom: 22%;
}

/* Kasi Mall visual */

.showcase-kasi {
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle at 78% 20%,
            rgba(255, 106, 0, 0.43),
            transparent 27%
        ),
        linear-gradient(145deg, #17171c, #080809);
}

.kasi-device {
    width: 76%;
    height: 64%;
    padding: 1rem;
    background: #f0ece5;
    border: 0.6rem solid #151515;
    border-radius: 0.7rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.75);
    transform: perspective(55rem) rotateY(7deg);
}

.kasi-browser-bar {
    height: 1.3rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
    background:
        radial-gradient(
            circle at 0.5rem 50%,
            #ff6a00 0 0.18rem,
            transparent 0.2rem
        ),
        #d4d0c8;
}

.kasi-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.kasi-products span {
    min-height: 6rem;
    border-radius: 0.4rem;
    background:
        linear-gradient(
            145deg,
            rgba(255, 106, 0, 0.88),
            rgba(65, 23, 4, 0.75)
        );
}

.kasi-cart {
    position: absolute;
    right: 10%;
    bottom: 11%;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 2rem rgba(255, 106, 0, 0.45);
}

.kasi-cart::before {
    content: "";
    position: absolute;
    left: 1.2rem;
    top: 1.35rem;
    width: 2rem;
    height: 1.35rem;
    border: 0.22rem solid #111;
    border-top: 0;
    transform: skew(-8deg);
}

.kasi-cart::after {
    content: "••";
    position: absolute;
    left: 1.3rem;
    bottom: 0.4rem;
    color: #111;
    font-size: 1.1rem;
    letter-spacing: 0.3rem;
}

@media (max-width: 1050px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-card,
    .showcase-card-large {
        grid-row: auto;
        min-height: 42rem;
    }

    .showcase-card-large .showcase-visual,
    .showcase-visual {
        min-height: 31rem;
    }
}

@media (max-width: 720px) {
    .showcase-heading {
        display: block;
        margin-bottom: 3rem;
    }

    .showcase-heading .concept-text-button {
        display: inline-block;
        margin-top: 2rem;
    }

    .showcase-card,
    .showcase-card-large {
        min-height: auto;
    }

    .showcase-card-large .showcase-visual,
    .showcase-visual {
        min-height: 24rem;
    }

    .dashboard-window,
    .call-centre-interface,
    .kasi-device {
        width: 88%;
    }

    .bus-illustration {
        width: 90%;
    }
}

/* =========================================================
   HOZIT V5 INDUSTRIES
   ========================================================= */

.v5-industries {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.1),
            transparent 25%
        ),
        #080809;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-industries-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: clamp(3rem, 8vw, 8rem);
    margin-bottom: 4rem;
}

.v5-industries-heading h2 {
    max-width: 14ch;
    margin: 0;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.4vw, 6rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-industries-heading h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-industries-heading > p {
    max-width: 31rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

.v5-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-industry-card {
    position: relative;
    min-height: 21rem;
    padding: 1.7rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        background 220ms ease,
        color 220ms ease,
        transform 220ms ease;
}

.v5-industry-card::before {
    content: "";
    position: absolute;
    right: -6rem;
    bottom: -7rem;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.18);
    filter: blur(3rem);
    opacity: 0;
    transition: opacity 220ms ease;
}

.v5-industry-card:hover {
    background: var(--orange);
    color: var(--black);
    transform: translateY(-0.25rem);
}

.v5-industry-card:hover::before {
    opacity: 1;
}

.v5-industry-number {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.v5-industry-icon {
    position: relative;
    z-index: 1;
    width: 3.5rem;
    height: 3.5rem;
    margin: 2.4rem 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 106, 0, 0.48);
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.07);
    color: var(--orange);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
}

.v5-industry-card > div:last-of-type {
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.v5-industry-card h3 {
    margin: 0 0 1rem;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2vw, 2.3rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.v5-industry-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

.v5-industry-arrow {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    color: var(--orange);
    font-size: 1.2rem;
}

.v5-industry-card:hover h3,
.v5-industry-card:hover p,
.v5-industry-card:hover .v5-industry-number,
.v5-industry-card:hover .v5-industry-arrow {
    color: var(--black);
}

.v5-industry-card:hover .v5-industry-icon {
    color: var(--black);
    border-color: rgba(0, 0, 0, 0.38);
    background: rgba(0, 0, 0, 0.06);
}

@media (max-width: 1050px) {
    .v5-industries-heading {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .v5-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .v5-industries-grid {
        grid-template-columns: 1fr;
    }

    .v5-industry-card {
        min-height: 18rem;
    }

    .v5-industry-icon {
        margin-top: 1.8rem;
    }

    .v5-industry-card > div:last-of-type {
        margin-top: 2rem;
    }
}

/* =========================================================
   HOZIT V5 IMPACT
   ========================================================= */

.v5-impact {
    position: relative;
    padding: clamp(5rem, 10vw, 10rem) 0;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #111115 0%,
            #070708 58%,
            #150903 100%
        );
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    isolation: isolate;
}

.v5-impact-grid-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.11;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );
    background-size: 5rem 5rem;
}

.v5-impact-glow {
    position: absolute;
    z-index: -1;
    right: -12rem;
    top: -12rem;
    width: 43rem;
    height: 43rem;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.19);
    filter: blur(7rem);
}

.v5-impact-heading {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
    gap: clamp(3rem, 8vw, 8rem);
    margin-bottom: 4.5rem;
}

.v5-impact-heading .concept-kicker {
    grid-column: 1 / -1;
    margin-bottom: -1.5rem;
}

.v5-impact-heading h2 {
    max-width: 13ch;
    margin: 0;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6.2rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-impact-heading h2 span {
    display: block;
    color: var(--orange);
}

.v5-impact-heading > p:last-child {
    max-width: 31rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

.v5-impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-impact-card {
    min-height: 22rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        background 220ms ease,
        transform 220ms ease;
}

.v5-impact-card:hover {
    background: rgba(255, 106, 0, 0.06);
    transform: translateY(-0.2rem);
}

.v5-impact-card > strong {
    color: var(--orange);
    font-family: var(--font-display);
    font-size: clamp(3.3rem, 5vw, 6rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.08em;
}

.v5-impact-card h3 {
    margin: 0 0 0.8rem;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.v5-impact-card p {
    max-width: 21rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

.v5-impact-card-cta {
    background: var(--orange);
    color: var(--black);
}

.v5-impact-card-cta:hover {
    background: var(--orange-light);
}

.v5-impact-small-label {
    color: rgba(0, 0, 0, 0.58);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.v5-impact-card-cta h3 {
    max-width: 12ch;
    color: var(--black);
    font-size: clamp(2rem, 3vw, 3.4rem);
}

.v5-impact-card-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.5rem;
    padding-bottom: 0.35rem;
    color: var(--black);
    font-weight: 800;
    border-bottom: 2px solid var(--black);
}

@media (max-width: 1050px) {
    .v5-impact-heading {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .v5-impact-heading .concept-kicker {
        grid-column: auto;
        margin-bottom: -1rem;
    }

    .v5-impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .v5-impact-stats {
        grid-template-columns: 1fr;
    }

    .v5-impact-card {
        min-height: 18rem;
    }
}

/* =========================================================
   HOZIT V5 TESTIMONIALS
   ========================================================= */

.v5-testimonials {
    padding: clamp(5rem, 10vw, 10rem) 0;
    background:
        radial-gradient(
            circle at 12% 10%,
            rgba(255, 106, 0, 0.08),
            transparent 25%
        ),
        #080809;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-testimonials-heading {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: clamp(3rem, 8vw, 8rem);
    margin-bottom: 4.5rem;
}

.v5-testimonials-heading h2 {
    max-width: 13ch;
    margin: 0;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6.2rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-testimonials-heading h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-testimonials-heading > p {
    max-width: 31rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

.v5-testimonials-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 1rem;
}

.v5-testimonial-card {
    position: relative;
    min-height: 24rem;
    margin: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
}

.v5-testimonial-card:hover {
    transform: translateY(-0.35rem);
    border-color: rgba(255, 106, 0, 0.55);
    background:
        linear-gradient(
            145deg,
            rgba(255, 106, 0, 0.1),
            rgba(255, 255, 255, 0.025)
        );
}

.v5-testimonial-featured {
    grid-row: span 2;
    min-height: 49rem;
    background:
        linear-gradient(
            145deg,
            var(--orange),
            #c94800
        );
    color: var(--black);
    border-color: transparent;
}

.v5-testimonial-featured:hover {
    background:
        linear-gradient(
            145deg,
            var(--orange-light),
            #d95400
        );
    border-color: transparent;
}

.v5-quote-mark {
    position: relative;
    z-index: 1;
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 0.7;
    color: var(--orange);
}

.v5-testimonial-featured .v5-quote-mark {
    color: rgba(0, 0, 0, 0.72);
}

.v5-testimonial-card > p {
    position: relative;
    z-index: 1;
    margin: auto 0;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.2vw, 2.5rem);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.04em;
}

.v5-testimonial-featured > p {
    color: var(--black);
    font-size: clamp(2rem, 3.8vw, 4.2rem);
    line-height: 1.13;
}

.v5-testimonial-card footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.v5-testimonial-avatar {
    width: 3.3rem;
    height: 3.3rem;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--orange);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 800;
}

.v5-testimonial-featured .v5-testimonial-avatar {
    background: var(--black);
    color: var(--orange);
}

.v5-testimonial-card footer div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.v5-testimonial-card footer strong {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
}

.v5-testimonial-card footer div span {
    color: rgba(255, 255, 255, 0.47);
    font-size: 0.82rem;
}

.v5-testimonial-featured footer strong {
    color: var(--black);
}

.v5-testimonial-featured footer div span {
    color: rgba(0, 0, 0, 0.58);
}

@media (max-width: 1050px) {
    .v5-testimonials-heading {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .v5-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .v5-testimonial-featured {
        grid-row: auto;
        min-height: 38rem;
    }
}

@media (max-width: 620px) {
    .v5-testimonial-card,
    .v5-testimonial-featured {
        min-height: 29rem;
        padding: 1.6rem;
    }

    .v5-testimonial-featured > p {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }
}

/* =========================================================
   HOZIT V5 INSIGHTS
   ========================================================= */

.v5-insights {
    padding: clamp(5rem, 10vw, 10rem) 0;
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(255, 106, 0, 0.09),
            transparent 24%
        ),
        #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-insights-heading {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: clamp(3rem, 8vw, 8rem);
    margin-bottom: 4.5rem;
}

.v5-insights-heading h2 {
    max-width: 14ch;
    margin: 0;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6.2rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-insights-heading h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-insights-heading-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.v5-insights-heading-side p {
    max-width: 31rem;
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

.v5-insights-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 1rem;
}

.v5-insight-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 23rem;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.015)
        );
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 220ms ease,
        border-color 220ms ease;
}

.v5-insight-card:hover {
    transform: translateY(-0.4rem);
    border-color: rgba(255, 106, 0, 0.6);
}

.v5-insight-featured {
    grid-row: span 3;
    display: flex;
    flex-direction: column;
    min-height: 71rem;
}

.v5-insight-visual {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 24% 18%,
            rgba(255, 106, 0, 0.5),
            transparent 28%
        ),
        linear-gradient(145deg, #17171c, #070708);
}

.v5-insight-featured .v5-insight-visual {
    min-height: 48rem;
}

.v5-insight-category {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    padding: 0.6rem 0.85rem;
    background: rgba(0, 0, 0, 0.68);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.v5-insight-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.v5-insight-content p {
    margin: 0 0 1rem;
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.v5-insight-content h3 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.4vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.v5-insight-featured .v5-insight-content h3 {
    font-size: clamp(2.2rem, 4vw, 4.5rem);
    line-height: 1.06;
}

.v5-insight-link {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    font-weight: 700;
}

/* Cybersecurity visual */

.v5-insight-cyber {
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255, 106, 0, 0.28),
            transparent 32%
        ),
        repeating-linear-gradient(
            90deg,
            #0c0c0f 0 2.8rem,
            #151519 2.8rem 2.9rem
        );
}

.v5-cyber-shield {
    position: relative;
    width: 15rem;
    height: 18rem;
    border: 2px solid rgba(255, 106, 0, 0.85);
    clip-path: polygon(
        50% 0,
        92% 18%,
        84% 68%,
        50% 100%,
        16% 68%,
        8% 18%
    );
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255, 106, 0, 0.25),
            transparent 42%
        );
    box-shadow:
        inset 0 0 3rem rgba(255, 106, 0, 0.15),
        0 0 3rem rgba(255, 106, 0, 0.3);
}

.v5-cyber-shield span {
    position: absolute;
    left: 50%;
    top: 48%;
    width: 3rem;
    height: 3rem;
    border: 0.35rem solid var(--orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.v5-cyber-shield span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 2.4rem;
    width: 0.45rem;
    height: 2.4rem;
    background: var(--orange);
    transform: translateX(-50%);
}

/* Managed IT visual */

.v5-insight-support {
    display: grid;
    place-items: center;
    background:
        linear-gradient(
            130deg,
            rgba(255, 106, 0, 0.32),
            transparent 52%
        ),
        #0b0b0d;
}

.v5-support-grid {
    display: grid;
    grid-template-columns: repeat(2, 5rem);
    gap: 0.8rem;
}

.v5-support-grid span {
    height: 5rem;
    border: 1px solid rgba(255, 106, 0, 0.55);
    background:
        linear-gradient(
            145deg,
            rgba(255, 106, 0, 0.18),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow: 0 0 2rem rgba(255, 106, 0, 0.08);
}

/* Recovery visual */

.v5-insight-recovery {
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle at 72% 22%,
            rgba(255, 106, 0, 0.45),
            transparent 27%
        ),
        linear-gradient(145deg, #18181d, #080809);
}

.v5-recovery-ring {
    position: relative;
    width: 10rem;
    height: 10rem;
    border: 0.8rem solid rgba(255, 106, 0, 0.25);
    border-top-color: var(--orange);
    border-right-color: var(--orange);
    border-radius: 50%;
    transform: rotate(-25deg);
}

.v5-recovery-ring::before {
    content: "";
    position: absolute;
    right: -1.4rem;
    top: -0.7rem;
    border-left: 1.6rem solid var(--orange);
    border-top: 0.8rem solid transparent;
    border-bottom: 0.8rem solid transparent;
}

/* VoIP visual */

.v5-insight-voip {
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle at 30% 25%,
            rgba(255, 106, 0, 0.42),
            transparent 25%
        ),
        #0b0b0e;
}

.v5-voip-wave {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    height: 10rem;
}

.v5-voip-wave span {
    width: 0.7rem;
    border-radius: 1rem;
    background: var(--orange);
    box-shadow: 0 0 1.2rem rgba(255, 106, 0, 0.45);
}

.v5-voip-wave span:nth-child(1) {
    height: 28%;
}

.v5-voip-wave span:nth-child(2) {
    height: 68%;
}

.v5-voip-wave span:nth-child(3) {
    height: 100%;
}

.v5-voip-wave span:nth-child(4) {
    height: 68%;
}

.v5-voip-wave span:nth-child(5) {
    height: 28%;
}

@media (max-width: 1050px) {
    .v5-insights-heading {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .v5-insights-grid {
        grid-template-columns: 1fr;
    }

    .v5-insight-featured {
        grid-row: auto;
        min-height: auto;
    }

    .v5-insight-featured .v5-insight-visual {
        min-height: 34rem;
    }
}

@media (max-width: 680px) {
    .v5-insight-card {
        grid-template-columns: 1fr;
    }

    .v5-insight-visual,
    .v5-insight-featured .v5-insight-visual {
        min-height: 23rem;
    }

    .v5-cyber-shield {
        width: 10rem;
        height: 12rem;
    }
}

/* =========================================================
   FINAL CTA AND FOOTER
   ========================================================= */

.v5-final-cta {
    position: relative;
    padding: clamp(5rem, 10vw, 10rem) 0;
    overflow: hidden;
    background: var(--orange);
    color: var(--black);
}

.v5-final-cta-lines {
    position: absolute;
    inset: 0;
    opacity: 0.17;
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.18) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.18) 1px,
            transparent 1px
        );
    background-size: 5rem 5rem;
}

.v5-final-cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: end;
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.64);
}

.v5-final-cta h2 {
    max-width: 12ch;
    margin: 0;
    color: var(--black);
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 8rem);
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: -0.075em;
}

.v5-final-cta h2 span {
    display: block;
    color: rgba(0, 0, 0, 0.52);
}

.v5-final-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
}

.v5-final-primary,
.v5-final-secondary {
    min-height: 4.8rem;
    padding: 1rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--font-display);
    font-weight: 800;
    transition:
        transform 200ms ease,
        background 200ms ease,
        color 200ms ease;
}

.v5-final-primary {
    background: var(--black);
    color: var(--white);
}

.v5-final-secondary {
    border: 2px solid var(--black);
    color: var(--black);
}

.v5-final-primary:hover,
.v5-final-secondary:hover {
    transform: translateY(-0.25rem);
}

.v5-final-secondary:hover {
    background: var(--black);
    color: var(--white);
}

/* Footer */

.v5-footer {
    padding: clamp(5rem, 8vw, 8rem) 0 2rem;
    background: #030303;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-footer-top {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: clamp(3rem, 6vw, 6rem);
    padding-bottom: 5rem;
}

.v5-footer-brand img {
    width: 13rem;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.v5-footer-brand > p {
    max-width: 29rem;
    margin: 2rem 0;
    color: rgba(255, 255, 255, 0.54);
    line-height: 1.75;
}

.v5-footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
}

.v5-footer-contact a,
.v5-footer-contact span {
    color: rgba(255, 255, 255, 0.72);
}

.v5-footer-contact a:hover {
    color: var(--orange);
}

.v5-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
}

.v5-footer-column h3 {
    margin: 0 0 1rem;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.v5-footer-column a {
    color: rgba(255, 255, 255, 0.58);
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.v5-footer-column a:hover {
    color: var(--white);
    transform: translateX(0.2rem);
}

.v5-footer-middle {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-footer-middle > div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.v5-footer-middle > div span {
    padding: 0.55rem 0.85rem;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.7rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-footer-middle > a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex: 0 0 auto;
    color: var(--white);
    font-weight: 700;
}

.v5-footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.78rem;
}

@media (max-width: 1050px) {
    .v5-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .v5-final-cta-actions {
        max-width: 31rem;
    }

    .v5-footer-top {
        grid-template-columns: 1.5fr repeat(2, 1fr);
    }

    .v5-footer-top > div:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 700px) {
    .v5-final-cta h2 {
        font-size: clamp(3.2rem, 15vw, 5.5rem);
    }

    .v5-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2rem;
    }

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

    .v5-footer-top > div:last-child {
        grid-column: auto;
    }

    .v5-footer-middle,
    .v5-footer-bottom {
        display: block;
    }

    .v5-footer-middle > a {
        margin-top: 2rem;
    }

    .v5-footer-bottom p + p {
        margin-top: 0.8rem;
    }
}

@media (max-width: 480px) {
    .v5-footer-top {
        grid-template-columns: 1fr;
    }

    .v5-footer-brand,
    .v5-footer-top > div:last-child {
        grid-column: auto;
    }
}

/* =========================================================
   COMPLETE HOZIT FOOTER DETAILS
   ========================================================= */

.v5-footer-summary {
    max-width: 31rem;
    margin: 2rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1rem;
    line-height: 1.75;
}

.v5-footer-mission {
    max-width: 32rem;
    padding-left: 1.2rem;
    border-left: 2px solid var(--orange);
}

.v5-footer-mission strong {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.v5-footer-mission p {
    margin: 0;
    color: rgba(255, 255, 255, 0.46);
    line-height: 1.7;
}

.v5-footer-contact-column address {
    margin: 0 0 0.8rem;
    color: rgba(255, 255, 255, 0.58);
    font-style: normal;
    line-height: 1.75;
}

.v5-footer-company-details {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-footer-company-details > div {
    min-height: 8.5rem;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-footer-company-details span {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.v5-footer-company-details strong {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.35;
}

.v5-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.v5-footer-bottom nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.v5-footer-bottom nav a {
    color: rgba(255, 255, 255, 0.44);
    transition: color 180ms ease;
}

.v5-footer-bottom nav a:hover {
    color: var(--orange);
}

@media (max-width: 1100px) {
    .v5-footer-company-details {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .v5-footer-company-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-footer-bottom nav {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .v5-footer-company-details {
        grid-template-columns: 1fr;
    }

    .v5-footer-bottom nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
    }
}

/* =========================================================
   BUILD SECTION, ENTERPRISE FOOTER AND CONTACT PANEL
   ========================================================= */

.hozit-build-section {
    position: relative;
    min-height: 39rem;
    padding: clamp(5rem, 8vw, 8rem) 0;
    overflow: hidden;
    background:
        linear-gradient(
            115deg,
            #ff6800 0%,
            #ff5a00 52%,
            #f45100 100%
        );
    color: #080809;
    isolation: isolate;
}

.hozit-build-grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.18;
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.2) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.2) 1px,
            transparent 1px
        );
    background-size: 5rem 5rem;
}

.hozit-build-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
}

.hozit-build-copy {
    max-width: 50rem;
}

.hozit-build-kicker {
    margin: 0 0 1.2rem;
    color: rgba(0, 0, 0, 0.72);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.hozit-build-copy h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(4rem, 7vw, 8rem);
    font-weight: 800;
    line-height: 0.91;
    letter-spacing: -0.075em;
}

.hozit-build-copy h2 span {
    display: block;
    color: var(--white);
}

.hozit-build-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.hozit-build-primary,
.hozit-build-phone {
    min-height: 4.5rem;
    padding: 0.9rem 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: var(--font-display);
    font-weight: 800;
    transition:
        transform 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.hozit-build-primary {
    min-width: 13rem;
    background: var(--black);
    color: var(--white);
}

.hozit-build-phone {
    min-width: 15rem;
    border: 2px solid rgba(0, 0, 0, 0.78);
    color: var(--black);
}

.hozit-build-primary:hover,
.hozit-build-phone:hover {
    transform: translateY(-0.25rem);
}

.hozit-build-phone:hover {
    background: var(--black);
    color: var(--white);
}

/* CTA globe */

.hozit-build-globe {
    position: absolute;
    z-index: -1;
    right: 11%;
    top: -5rem;
    width: 37rem;
    height: 37rem;
    opacity: 0.43;
}

.build-globe-sphere {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.build-globe-dots {
    position: absolute;
    inset: 10%;
    background-image:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.8) 0 1.3px,
            transparent 1.7px
        );
    background-size: 0.55rem 0.55rem;
    clip-path: polygon(
        44% 0,
        73% 8%,
        95% 26%,
        82% 49%,
        64% 62%,
        54% 100%,
        34% 83%,
        23% 61%,
        2% 47%,
        18% 24%,
        12% 8%
    );
}

.build-node {
    position: absolute;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--white);
    box-shadow:
        0 0 0.7rem var(--white),
        0 0 1.6rem var(--white);
}

.build-node-one {
    left: 25%;
    top: 29%;
}

.build-node-two {
    right: 24%;
    top: 18%;
}

.build-node-three {
    left: 52%;
    top: 54%;
}

.build-node-four {
    right: 18%;
    bottom: 24%;
}

.build-route {
    position: absolute;
    left: 6%;
    right: 4%;
    top: 44%;
    height: 24%;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 50%;
    transform: rotate(-18deg);
}

.build-route-two {
    top: 39%;
    transform: rotate(18deg);
}

/* Footer */

.hozit-enterprise-footer {
    padding: 0 0 2rem;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255, 106, 0, 0.06),
            transparent 24%
        ),
        #030304;
    color: var(--white);
}

.hozit-social-section {
    padding: 2.2rem 0;
    text-align: center;
}

.hozit-social-section h2 {
    margin: 0 0 1.5rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.hozit-social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.hozit-social-links a {
    min-height: 3.5rem;
    padding: 0.75rem 1.35rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.hozit-social-links a:hover {
    transform: translateY(-0.2rem);
    border-color: rgba(255, 106, 0, 0.58);
    background: rgba(255, 106, 0, 0.1);
}

.social-symbol {
    min-width: 1.25rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.hozit-footer-registration {
    padding: 1.4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hozit-footer-registration p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.86rem;
}

.hozit-footer-main {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    padding: 3rem 0;
}

.hozit-footer-logo img {
    width: 11rem;
    height: auto;
}

.hozit-footer-about > p {
    max-width: 23rem;
    margin: 1.4rem 0;
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.7;
}

.hozit-footer-mission h3,
.hozit-footer-column h3,
.hozit-legal-section h2 {
    position: relative;
    margin: 0 0 1.2rem;
    padding-left: 0.9rem;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.95rem;
}

.hozit-footer-mission h3::before,
.hozit-footer-column h3::before,
.hozit-legal-section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.05rem;
    bottom: 0.05rem;
    width: 0.18rem;
    background: var(--orange);
}

.hozit-footer-mission p {
    max-width: 23rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.54);
    line-height: 1.7;
}

.hozit-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.72rem;
}

.hozit-footer-column a,
.hozit-footer-column address {
    color: rgba(255, 255, 255, 0.65);
    font-style: normal;
    line-height: 1.55;
    transition: color 180ms ease;
}

.hozit-footer-column a:hover {
    color: var(--orange);
}

.hozit-company-details dl {
    width: 100%;
    margin: 0;
}

.hozit-company-details dl > div {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1rem;
    padding: 0.4rem 0;
}

.hozit-company-details dt {
    color: rgba(255, 255, 255, 0.42);
}

.hozit-company-details dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.hozit-legal-section {
    position: relative;
    padding: 2rem 12rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hozit-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.7rem;
}

.hozit-legal-links a {
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.88rem;
    transition: color 180ms ease;
}

.hozit-legal-links a:hover {
    color: var(--orange);
}

.hozit-footer-contact-button {
    position: absolute;
    right: 0;
    bottom: 0;
    min-height: 3.8rem;
    padding: 0.8rem 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border: 0;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 1rem 3rem rgba(255, 106, 0, 0.2);
}

/* Floating contact panel */

.hozit-contact-widget {
    position: fixed;
    z-index: 500;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.hozit-floating-contact {
    min-height: 4rem;
    padding: 0.85rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: 0;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 1.2rem 3.5rem rgba(255, 106, 0, 0.34);
}

.floating-contact-symbol {
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 180ms ease;
}

.hozit-floating-contact[aria-expanded="true"]
.floating-contact-symbol {
    transform: rotate(45deg);
}

.hozit-contact-panel {
    width: min(23rem, calc(100vw - 2rem));
    padding: 1.2rem;
    border-radius: 1.5rem;
    background: var(--white);
    color: #10203c;
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.42);
}

.hozit-contact-panel[hidden] {
    display: none;
}

.hozit-contact-panel-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0.4rem 1rem;
    border-bottom: 1px solid #dfe4ec;
}

.hozit-contact-panel-header h2 {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.hozit-contact-panel-header p {
    margin: 0;
    color: #6f7d96;
    line-height: 1.5;
}

.hozit-contact-close {
    width: 2.4rem;
    height: 2.4rem;
    flex: 0 0 auto;
    border: 0;
    border-radius: 50%;
    background: #eef1f6;
    color: #10203c;
    font-size: 1.4rem;
    cursor: pointer;
}

.hozit-contact-options {
    display: grid;
    gap: 0.7rem;
    padding-top: 1rem;
}

.hozit-contact-option {
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 1rem;
    background: #f3f5f8;
    transition:
        transform 180ms ease,
        background 180ms ease;
}

.hozit-contact-option:hover {
    transform: translateX(0.25rem);
    background: #e9edf4;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 0.8rem;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 800;
}

.contact-icon-whatsapp {
    background: #179b50;
}

.contact-icon-quote {
    background: #ff5a00;
}

.contact-icon-support {
    background: #2463d3;
}

.contact-icon-email {
    background: #10203c;
}

.hozit-contact-option > span:last-child {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hozit-contact-option strong {
    color: #10203c;
    font-family: var(--font-display);
    font-size: 1rem;
}

.hozit-contact-option small {
    color: #71809a;
    font-size: 0.8rem;
}

@media (max-width: 1250px) {
    .hozit-footer-main {
        grid-template-columns: 1.4fr repeat(2, 1fr);
    }

    .hozit-footer-main > div:nth-child(4),
    .hozit-footer-main > div:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 900px) {
    .hozit-build-globe {
        right: -10rem;
        opacity: 0.25;
    }

    .hozit-build-inner {
        grid-template-columns: 1fr;
    }

    .hozit-footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .hozit-footer-about {
        grid-column: 1 / -1;
    }

    .hozit-legal-section {
        padding-right: 0;
        padding-bottom: 5.5rem;
    }

    .hozit-footer-contact-button {
        left: 0;
        right: auto;
    }
}

@media (max-width: 620px) {
    .hozit-build-copy h2 {
        font-size: clamp(3.4rem, 16vw, 5.4rem);
    }

    .hozit-build-actions {
        flex-direction: column;
    }

    .hozit-build-primary,
    .hozit-build-phone {
        width: 100%;
    }

    .hozit-build-globe {
        width: 26rem;
        height: 26rem;
        right: -13rem;
        top: 2rem;
    }

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

    .hozit-footer-about {
        grid-column: auto;
    }

    .hozit-social-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .hozit-social-links a {
        justify-content: center;
    }

    .hozit-contact-widget {
        right: 0.75rem;
        bottom: 0.75rem;
    }

    .hozit-floating-contact {
        min-height: 3.6rem;
        padding: 0.75rem 1.2rem;
    }
}

/* ===================================================
   HOZIT SOCIAL LINKS
   =================================================== */

.hozit-social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.hozit-social-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.hozit-social-links a i {
    width: 28px;
    font-size: 24px;
    text-align: center;
}

.hozit-social-links a span {
    font-size: 17px;
}

.hozit-social-links a:hover {
    transform: translateY(-5px);
    background: #ff6800;
    border-color: #ff6800;
    box-shadow: 0 12px 35px rgba(255, 104, 0, 0.35);
}

@media (max-width: 620px) {
    .hozit-social-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hozit-social-links a {
        justify-content: center;
        padding: 14px 18px;
    }

    .hozit-social-links a span {
        font-size: 15px;
    }
}

/* =========================================================
   SAFE FOOTER ENHANCEMENTS
   ========================================================= */

.v5-social-section {
    padding: 2.5rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-social-section h2 {
    margin: 0 0 1.6rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.v5-social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.v5-social-links a {
    min-height: 3.5rem;
    padding: 0.8rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: #ffffff;
    font-weight: 700;
    transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.v5-social-links a i {
    width: 1.3rem;
    font-size: 1.2rem;
    text-align: center;
}

.v5-social-links a:hover {
    transform: translateY(-0.25rem);
    background: var(--orange);
    border-color: var(--orange);
    color: #080809;
    box-shadow: 0 1rem 2.5rem rgba(255, 106, 0, 0.25);
}

/* Legal */

.v5-footer-legal {
    position: relative;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-footer-legal h2 {
    position: relative;
    margin: 0 0 1.4rem;
    padding-left: 0.9rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1rem;
}

.v5-footer-legal h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0.2rem;
    background: var(--orange);
}

.v5-footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.7rem;
}

.v5-footer-legal-links a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.85rem;
    transition: color 180ms ease;
}

.v5-footer-legal-links a:hover {
    color: var(--orange);
}

/* Floating contact widget */

.v5-contact-widget {
    position: fixed;
    z-index: 600;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.v5-floating-contact {
    min-height: 4rem;
    padding: 0.85rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border: 0;
    border-radius: 999px;
    background: var(--orange);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 1.2rem 3.5rem rgba(255, 106, 0, 0.34);
    transition:
        transform 180ms ease,
        background 180ms ease;
}

.v5-floating-contact:hover {
    transform: translateY(-0.25rem);
    background: var(--orange-light);
}

.v5-floating-contact-symbol {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    transition: transform 180ms ease;
}

.v5-floating-contact[aria-expanded="true"]
.v5-floating-contact-symbol {
    transform: rotate(45deg);
}

.v5-contact-panel {
    width: min(23rem, calc(100vw - 2rem));
    padding: 1.2rem;
    border-radius: 1.5rem;
    background: #ffffff;
    color: #10203c;
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.48);
}

.v5-contact-panel[hidden] {
    display: none;
}

.v5-contact-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0.4rem 1rem;
    border-bottom: 1px solid #dfe4ec;
}

.v5-contact-panel-header h2 {
    margin: 0 0 0.35rem;
    color: #10203c;
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.v5-contact-panel-header p {
    margin: 0;
    color: #6f7d96;
    line-height: 1.5;
}

.v5-contact-panel-close {
    width: 2.4rem;
    height: 2.4rem;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 0;
    border-radius: 50%;
    background: #eef1f6;
    color: #10203c;
    font-size: 1.4rem;
    cursor: pointer;
}

.v5-contact-options {
    display: grid;
    gap: 0.7rem;
    padding-top: 1rem;
}

.v5-contact-option {
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 1rem;
    background: #f3f5f8;
    transition:
        transform 180ms ease,
        background 180ms ease;
}

.v5-contact-option:hover {
    transform: translateX(0.2rem);
    background: #e9edf4;
}

.v5-contact-icon {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 0.8rem;
    color: #ffffff;
    font-size: 1.15rem;
}

.v5-contact-whatsapp {
    background: #179b50;
}

.v5-contact-quote {
    background: #ff5a00;
}

.v5-contact-support {
    background: #2463d3;
}

.v5-contact-email {
    background: #10203c;
}

.v5-contact-option > span:last-child {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.v5-contact-option strong {
    color: #10203c;
    font-family: var(--font-display);
    font-size: 1rem;
}

.v5-contact-option small {
    color: #71809a;
    font-size: 0.8rem;
}

@media (max-width: 620px) {
    .v5-social-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-social-links a {
        padding-inline: 1rem;
    }

    .v5-contact-widget {
        right: 0.75rem;
        bottom: 0.75rem;
    }

    .v5-floating-contact {
        min-height: 3.6rem;
        padding: 0.75rem 1.2rem;
    }
}

/* =========================================================
   PHASE 3A — PREMIUM HERO MOTION
   ========================================================= */

.concept-hero[data-premium-hero] {
    --hero-pointer-x: 72%;
    --hero-pointer-y: 42%;
    isolation: isolate;
}

.hero-particle-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.52;
}

.hero-pointer-glow {
    position: absolute;
    z-index: 0;
    left: var(--hero-pointer-x);
    top: var(--hero-pointer-y);
    width: 32rem;
    height: 32rem;
    border-radius: 50%;
    pointer-events: none;
    background:
        radial-gradient(
            circle,
            rgba(255, 106, 0, 0.2) 0%,
            rgba(255, 106, 0, 0.08) 34%,
            transparent 69%
        );
    filter: blur(1rem);
    transform: translate(-50%, -50%);
    transition:
        left 140ms linear,
        top 140ms linear,
        opacity 250ms ease;
    opacity: 0.9;
}

.concept-hero-grid {
    z-index: 3;
}

.hero-copy-animated .concept-kicker,
.hero-copy-animated h1,
.hero-copy-animated .concept-description,
.hero-copy-animated .concept-actions {
    opacity: 0;
    transform: translateY(2rem);
    filter: blur(0.45rem);
}

.hero-copy-animated.is-visible .concept-kicker {
    animation: heroTextReveal 650ms 80ms forwards;
}

.hero-copy-animated.is-visible h1 {
    animation: heroTextReveal 850ms 180ms forwards;
}

.hero-copy-animated.is-visible .concept-description {
    animation: heroTextReveal 750ms 360ms forwards;
}

.hero-copy-animated.is-visible .concept-actions {
    animation: heroTextReveal 750ms 500ms forwards;
}

@keyframes heroTextReveal {
    from {
        opacity: 0;
        transform: translateY(2rem);
        filter: blur(0.45rem);
    }

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

.hero-globe-animated {
    animation:
        heroGlobeFloat 7s ease-in-out infinite,
        heroGlobeEnter 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) both;
    transform-origin: center;
    will-change: transform;
}

@keyframes heroGlobeEnter {
    from {
        opacity: 0;
        transform: translateY(3rem) scale(0.92);
        filter: blur(0.7rem);
    }

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

@keyframes heroGlobeFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(0, -1rem, 0) rotate(1.2deg);
    }
}

.globe-orbit-one {
    animation: globeOrbitPulse 4.8s ease-in-out infinite;
}

.globe-orbit-two {
    animation: globeOrbitPulse 4.8s 1.1s ease-in-out infinite;
}

@keyframes globeOrbitPulse {
    0%,
    100% {
        opacity: 0.35;
        filter: brightness(0.85);
    }

    50% {
        opacity: 1;
        filter: brightness(1.45);
    }
}

.globe-node {
    animation: globeNodePulse 2.7s ease-in-out infinite;
}

.node-two {
    animation-delay: 0.45s;
}

.node-three {
    animation-delay: 0.9s;
}

.node-four {
    animation-delay: 1.35s;
}

@keyframes globeNodePulse {
    0%,
    100% {
        transform: scale(0.82);
        opacity: 0.55;
    }

    50% {
        transform: scale(1.35);
        opacity: 1;
    }
}

.concept-primary-button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.concept-primary-button::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -40%;
    bottom: -40%;
    left: -45%;
    width: 32%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.54),
            transparent
        );
    transform: skewX(-18deg);
    transition: left 650ms ease;
}

.concept-primary-button:hover::before {
    left: 120%;
}

.concept-primary-button:hover {
    box-shadow:
        0 1rem 3rem rgba(255, 106, 0, 0.28),
        0 0 2rem rgba(255, 106, 0, 0.16);
}

.concept-text-button {
    position: relative;
}

.concept-text-button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 100%;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0.35);
    transform-origin: left;
    transition: transform 220ms ease;
}

.concept-text-button:hover::after {
    transform: scaleX(1);
}

@media (max-width: 720px) {
    .hero-pointer-glow {
        display: none;
    }

    .hero-particle-canvas {
        opacity: 0.3;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-copy-animated .concept-kicker,
    .hero-copy-animated h1,
    .hero-copy-animated .concept-description,
    .hero-copy-animated .concept-actions {
        opacity: 1;
        transform: none;
        filter: none;
        animation: none !important;
    }

    .hero-globe-animated,
    .globe-orbit-one,
    .globe-orbit-two,
    .globe-node {
        animation: none !important;
    }

    .hero-particle-canvas {
        display: none;
    }
}

/* =========================================================
   PHASE 3B — PREMIUM CARD INTERACTIONS
   ========================================================= */

.technology-card,
.showcase-card,
.v5-industry-card,
.v5-insight-card,
.v5-testimonial-card,
.v5-impact-card {
    --card-pointer-x: 50%;
    --card-pointer-y: 50%;
    --card-rotate-x: 0deg;
    --card-rotate-y: 0deg;
    --card-lift: 0rem;

    position: relative;
    transform:
        perspective(70rem)
        rotateX(var(--card-rotate-x))
        rotateY(var(--card-rotate-y))
        translateY(var(--card-lift));
    transform-style: preserve-3d;
    will-change: transform;
    transition:
        transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1),
        border-color 220ms ease,
        box-shadow 220ms ease,
        background 220ms ease;
}

/* Mouse-following spotlight */
.technology-card::after,
.showcase-card::after,
.v5-industry-card::after,
.v5-insight-card::after,
.v5-testimonial-card::after,
.v5-impact-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    background:
        radial-gradient(
            circle 16rem at
            var(--card-pointer-x)
            var(--card-pointer-y),
            rgba(255, 106, 0, 0.18),
            rgba(255, 106, 0, 0.06) 28%,
            transparent 68%
        );
    transition: opacity 220ms ease;
}

/* Keep content above spotlight */
.technology-card > *,
.showcase-card > *,
.v5-industry-card > *,
.v5-insight-card > *,
.v5-testimonial-card > *,
.v5-impact-card > * {
    position: relative;
    z-index: 1;
}

/* Hover depth */
.technology-card.is-card-active,
.showcase-card.is-card-active,
.v5-industry-card.is-card-active,
.v5-insight-card.is-card-active,
.v5-testimonial-card.is-card-active,
.v5-impact-card.is-card-active {
    --card-lift: -0.45rem;

    border-color: rgba(255, 106, 0, 0.58);
    box-shadow:
        0 1.8rem 4.5rem rgba(0, 0, 0, 0.42),
        0 0 2.5rem rgba(255, 106, 0, 0.1);
}

.technology-card.is-card-active::after,
.showcase-card.is-card-active::after,
.v5-industry-card.is-card-active::after,
.v5-insight-card.is-card-active::after,
.v5-testimonial-card.is-card-active::after,
.v5-impact-card.is-card-active::after {
    opacity: 1;
}

/* Slight depth for visual elements */
.technology-card .technology-icon,
.showcase-card .showcase-visual,
.v5-industry-card .v5-industry-icon,
.v5-insight-card .v5-insight-visual,
.v5-testimonial-card .v5-quote-mark,
.v5-impact-card > strong {
    transform: translateZ(1.2rem);
    transition: transform 220ms ease;
}

.technology-card.is-card-active .technology-icon,
.v5-industry-card.is-card-active .v5-industry-icon {
    transform: translateZ(1.7rem) scale(1.06);
}

.showcase-card.is-card-active .showcase-visual,
.v5-insight-card.is-card-active .v5-insight-visual {
    transform: translateZ(1.1rem) scale(1.012);
}

/* Arrow movement */
.technology-card .technology-arrow,
.showcase-card .showcase-link,
.v5-industry-card .v5-industry-arrow,
.v5-insight-card .v5-insight-link {
    transition:
        transform 220ms ease,
        color 220ms ease;
}

.technology-card.is-card-active .technology-arrow,
.v5-industry-card.is-card-active .v5-industry-arrow {
    transform: translate(0.3rem, -0.3rem);
}

.showcase-card.is-card-active .showcase-link,
.v5-insight-card.is-card-active .v5-insight-link {
    transform: translateX(0.35rem);
    color: var(--orange);
}

/* Featured orange cards need a darker spotlight */
.v5-testimonial-featured::after,
.v5-impact-card-cta::after {
    background:
        radial-gradient(
            circle 16rem at
            var(--card-pointer-x)
            var(--card-pointer-y),
            rgba(255, 255, 255, 0.22),
            rgba(255, 255, 255, 0.06) 30%,
            transparent 68%
        );
}

.v5-testimonial-featured.is-card-active,
.v5-impact-card-cta.is-card-active {
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow:
        0 1.8rem 4.5rem rgba(0, 0, 0, 0.34),
        0 0 2.5rem rgba(255, 106, 0, 0.18);
}

/* Touch devices: retain lift without tilt */
@media (hover: none), (pointer: coarse) {
    .technology-card,
    .showcase-card,
    .v5-industry-card,
    .v5-insight-card,
    .v5-testimonial-card,
    .v5-impact-card {
        --card-rotate-x: 0deg !important;
        --card-rotate-y: 0deg !important;
    }

    .technology-card::after,
    .showcase-card::after,
    .v5-industry-card::after,
    .v5-insight-card::after,
    .v5-testimonial-card::after,
    .v5-impact-card::after {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .technology-card,
    .showcase-card,
    .v5-industry-card,
    .v5-insight-card,
    .v5-testimonial-card,
    .v5-impact-card {
        transform: none !important;
        transition: none !important;
    }

    .technology-card::after,
    .showcase-card::after,
    .v5-industry-card::after,
    .v5-insight-card::after,
    .v5-testimonial-card::after,
    .v5-impact-card::after {
        display: none;
    }
}

/* =========================================================
   PHASE 3C — STATISTICS AND REVEAL POLISH
   ========================================================= */

.reveal {
    --reveal-delay: 0ms;
    opacity: 0;
    transform: translateY(2rem) scale(0.985);
    filter: blur(0.35rem);
    transition:
        opacity 760ms ease var(--reveal-delay),
        transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay),
        filter 760ms ease var(--reveal-delay);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.technology-grid .reveal:nth-child(2),
.showcase-grid .reveal:nth-child(2),
.v5-industries-grid .reveal:nth-child(2),
.v5-impact-stats .reveal:nth-child(2),
.v5-testimonials-grid .reveal:nth-child(2),
.v5-insights-grid .reveal:nth-child(2) {
    --reveal-delay: 90ms;
}

.technology-grid .reveal:nth-child(3),
.showcase-grid .reveal:nth-child(3),
.v5-industries-grid .reveal:nth-child(3),
.v5-impact-stats .reveal:nth-child(3),
.v5-testimonials-grid .reveal:nth-child(3),
.v5-insights-grid .reveal:nth-child(3) {
    --reveal-delay: 180ms;
}

.technology-grid .reveal:nth-child(4),
.showcase-grid .reveal:nth-child(4),
.v5-industries-grid .reveal:nth-child(4),
.v5-impact-stats .reveal:nth-child(4),
.v5-testimonials-grid .reveal:nth-child(4),
.v5-insights-grid .reveal:nth-child(4) {
    --reveal-delay: 270ms;
}

.technology-grid .reveal:nth-child(5),
.v5-industries-grid .reveal:nth-child(5),
.v5-impact-stats .reveal:nth-child(5),
.v5-testimonials-grid .reveal:nth-child(5) {
    --reveal-delay: 360ms;
}

.technology-grid .reveal:nth-child(6),
.v5-industries-grid .reveal:nth-child(6),
.v5-impact-stats .reveal:nth-child(6) {
    --reveal-delay: 450ms;
}

.v5-industries-grid .reveal:nth-child(7) {
    --reveal-delay: 540ms;
}

.v5-industries-grid .reveal:nth-child(8) {
    --reveal-delay: 630ms;
}

.counter {
    display: inline-block;
    min-width: 3ch;
    font-variant-numeric: tabular-nums;
    will-change: contents;
}

.counter.is-counting {
    text-shadow: 0 0 1.5rem rgba(255, 106, 0, 0.2);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

/* =========================================================
   PHASE 3D — SMOOTH PARALLAX AND BACKGROUND MOTION
   ========================================================= */

:root {
    --page-scroll-progress: 0;
}

[data-parallax] {
    --parallax-y: 0px;
    --parallax-x: 0px;
    --parallax-scale: 1;

    transform:
        translate3d(
            var(--parallax-x),
            var(--parallax-y),
            0
        )
        scale(var(--parallax-scale));

    will-change: transform;
}

/*
 * Do not apply data-parallax directly to cards because the
 * card interaction system already controls their transforms.
 */
.concept-hero-glow,
.hero-pointer-glow,
.concept-globe,
.performance-glow,
.v5-impact-glow,
.hozit-build-globe,
.showcase-visual,
.v5-insight-visual {
    backface-visibility: hidden;
}

/* Slight breathing effect for large background glows */
.concept-hero-glow {
    animation: v5GlowBreathe 8s ease-in-out infinite;
}

.v5-impact-glow,
.performance-glow {
    animation: v5GlowBreathe 10s 1.5s ease-in-out infinite;
}

@keyframes v5GlowBreathe {
    0%,
    100% {
        opacity: 0.72;
        filter: blur(5.5rem);
    }

    50% {
        opacity: 1;
        filter: blur(7rem);
    }
}

/* Parallax elements remain smooth during scrolling */
.concept-globe[data-parallax],
.hozit-build-globe[data-parallax],
.showcase-visual[data-parallax],
.v5-insight-visual[data-parallax] {
    transition: transform 80ms linear;
}

/* Small depth shift inside project visuals */
.showcase-card {
    overflow: hidden;
}

.showcase-card .showcase-visual {
    transform-origin: center;
}

/* Subtle horizontal motion for the CTA globe */
.hozit-build-globe[data-parallax] {
    transform:
        translate3d(
            var(--parallax-x),
            var(--parallax-y),
            0
        )
        rotate(var(--parallax-rotate, 0deg))
        scale(var(--parallax-scale));
}

/* Hero grid reacts subtly to overall page scroll */
.concept-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 30%;
    pointer-events: none;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.38),
            transparent
        );
    opacity: calc(
        0.2 + (var(--page-scroll-progress) * 0.3)
    );
}

/* Reduce animation intensity on smaller screens */
@media (max-width: 900px) {
    .concept-hero-glow,
    .v5-impact-glow,
    .performance-glow {
        animation-duration: 12s;
    }

    .showcase-visual[data-parallax],
    .v5-insight-visual[data-parallax] {
        transition: none;
    }
}

@media (hover: none), (pointer: coarse) {
    [data-parallax] {
        --parallax-x: 0px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-parallax] {
        transform: none !important;
        transition: none !important;
    }

    .concept-hero-glow,
    .v5-impact-glow,
    .performance-glow {
        animation: none !important;
    }
}

/* =========================================================
   PHASE 3E — PREMIUM BUTTONS AND NAVIGATION
   ========================================================= */

.primary-navigation a {
    position: relative;
    padding-block: 0.55rem;
}

.primary-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: right;
    transition:
        transform 240ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after,
.primary-navigation a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible {
    color: #ffffff;
}

/* Magnetic targets */

.header-cta,
.concept-primary-button,
.concept-text-button,
.hozit-build-primary,
.hozit-build-phone,
.v5-floating-contact,
.v5-final-primary,
.v5-final-secondary {
    --magnetic-x: 0px;
    --magnetic-y: 0px;

    transform:
        translate3d(
            var(--magnetic-x),
            var(--magnetic-y),
            0
        );

    will-change: transform;
    transition:
        transform 180ms cubic-bezier(0.2, 0.7, 0.2, 1),
        color 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

/* Animated highlight sweep */

.header-cta,
.hozit-build-primary,
.v5-floating-contact,
.v5-final-primary {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.header-cta::before,
.hozit-build-primary::before,
.v5-floating-contact::before,
.v5-final-primary::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -45%;
    bottom: -45%;
    left: -55%;
    width: 36%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.52),
            transparent
        );
    transform: skewX(-20deg);
    transition: left 650ms ease;
}

.header-cta:hover::before,
.hozit-build-primary:hover::before,
.v5-floating-contact:hover::before,
.v5-final-primary:hover::before {
    left: 125%;
}

.header-cta:hover {
    box-shadow:
        0 1rem 2.8rem rgba(255, 106, 0, 0.28),
        0 0 1.6rem rgba(255, 106, 0, 0.18);
}

.hozit-build-primary:hover,
.v5-final-primary:hover {
    box-shadow:
        0 1.2rem 3rem rgba(0, 0, 0, 0.25);
}

.v5-floating-contact:hover {
    box-shadow:
        0 1.4rem 3.8rem rgba(255, 106, 0, 0.45),
        0 0 1.8rem rgba(255, 106, 0, 0.25);
}

/* Arrow animation */

.header-cta span,
.concept-primary-button span,
.hozit-build-primary span,
.v5-final-primary span {
    display: inline-block;
    transition: transform 180ms ease;
}

.header-cta:hover span,
.concept-primary-button:hover span,
.hozit-build-primary:hover span,
.v5-final-primary:hover span {
    transform: translate(0.25rem, -0.25rem);
}

/* Secondary buttons */

.hozit-build-phone,
.v5-final-secondary {
    position: relative;
    overflow: hidden;
}

.hozit-build-phone::before,
.v5-final-secondary::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #080809;
    transform: scaleX(0);
    transform-origin: right;
    transition:
        transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hozit-build-phone:hover::before,
.v5-final-secondary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.hozit-build-phone:hover,
.v5-final-secondary:hover {
    color: #ffffff;
}

/* Strong, accessible keyboard focus */

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(255, 106, 0, 0.72);
    outline-offset: 4px;
}

.header-cta:focus-visible,
.concept-primary-button:focus-visible,
.hozit-build-primary:focus-visible,
.hozit-build-phone:focus-visible,
.v5-floating-contact:focus-visible {
    box-shadow:
        0 0 0 5px rgba(255, 106, 0, 0.18);
}

/* Header scroll polish */

.site-header {
    transition:
        background 260ms ease,
        border-color 260ms ease,
        box-shadow 260ms ease,
        min-height 260ms ease;
}

.site-header.is-scrolled {
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 1rem 3rem rgba(0, 0, 0, 0.28);
}

.site-header.is-scrolled .header-inner {
    min-height: 5.8rem;
}

.site-header.is-scrolled .brand-logo {
    width: 10.5rem;
    max-height: 3.8rem;
}

.brand-logo {
    transition:
        width 240ms ease,
        max-height 240ms ease,
        opacity 180ms ease;
}

@media (hover: none), (pointer: coarse) {
    .header-cta,
    .concept-primary-button,
    .concept-text-button,
    .hozit-build-primary,
    .hozit-build-phone,
    .v5-floating-contact,
    .v5-final-primary,
    .v5-final-secondary {
        --magnetic-x: 0px !important;
        --magnetic-y: 0px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .header-cta,
    .concept-primary-button,
    .concept-text-button,
    .hozit-build-primary,
    .hozit-build-phone,
    .v5-floating-contact,
    .v5-final-primary,
    .v5-final-secondary,
    .primary-navigation a::after {
        transition: none !important;
        transform: none !important;
    }

    .header-cta::before,
    .concept-primary-button::before,
    .hozit-build-primary::before,
    .v5-floating-contact::before,
    .v5-final-primary::before {
        display: none;
    }
}

/* =========================================================
   PHASE 3F — PREMIUM PAGE LOADER
   ========================================================= */

body.is-loading {
    overflow: hidden;
}

.v5-page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255, 106, 0, 0.12),
            transparent 30%
        ),
        #020203;
    transition:
        opacity 500ms ease,
        visibility 500ms ease;
}

.v5-page-loader::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );
    background-size: 4rem 4rem;
}

.v5-page-loader.is-complete {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.v5-loader-inner {
    position: relative;
    z-index: 1;
    width: min(28rem, calc(100vw - 3rem));
    text-align: center;
}

.v5-loader-brand {
    display: flex;
    justify-content: center;
    gap: 0.15em;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.08em;
}

.v5-loader-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(1.4rem);
    animation:
        v5LoaderLetterReveal 420ms
        cubic-bezier(0.2, 0.7, 0.2, 1)
        forwards;
}

.v5-loader-letter:nth-child(1) {
    animation-delay: 40ms;
}

.v5-loader-letter:nth-child(2) {
    animation-delay: 110ms;
}

.v5-loader-letter:nth-child(3) {
    color: var(--orange);
    animation-delay: 180ms;
}

.v5-loader-letter:nth-child(4) {
    animation-delay: 250ms;
}

.v5-loader-letter:nth-child(5) {
    animation-delay: 320ms;
}

@keyframes v5LoaderLetterReveal {
    from {
        opacity: 0;
        transform: translateY(1.4rem);
        filter: blur(0.4rem);
    }

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

.v5-loader-line {
    width: 100%;
    height: 2px;
    margin-top: 2rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.v5-loader-line span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--orange);
    transform: translateX(-100%);
    animation:
        v5LoaderProgress 900ms
        cubic-bezier(0.2, 0.7, 0.2, 1)
        forwards;
}

@keyframes v5LoaderProgress {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

.v5-loader-inner p {
    margin: 1.2rem 0 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    opacity: 0;
    animation: v5LoaderCaption 400ms 420ms forwards;
}

@keyframes v5LoaderCaption {
    to {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v5-page-loader {
        display: none;
    }

    body.is-loading {
        overflow: auto;
    }
}

/* =========================================================
   PHASE 3G — SCROLL PROGRESS AND ACTIVE NAVIGATION
   ========================================================= */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

.v5-scroll-progress {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.04);
}

.v5-scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            #ff6a00,
            #ff8a33,
            #ff6a00
        );
    box-shadow:
        0 0 0.8rem rgba(255, 106, 0, 0.7);
    transform: scaleX(var(--scroll-progress, 0));
    transform-origin: left center;
    will-change: transform;
}

.primary-navigation a.is-section-active {
    color: #ffffff;
}

.primary-navigation a.is-section-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

section[id] {
    scroll-margin-top: 7rem;
}

/* Prevent the loader from covering the progress line forever */
body.is-loading .v5-scroll-progress {
    opacity: 0;
}

body:not(.is-loading) .v5-scroll-progress {
    opacity: 1;
    transition: opacity 300ms ease;
}

@media (max-width: 1050px) {
    html {
        scroll-padding-top: 6rem;
    }

    section[id] {
        scroll-margin-top: 6rem;
    }
}

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

    .v5-scroll-progress span {
        transition: none;
    }
}

/* =========================================================
   PHASE 3H — PERFORMANCE AND ANIMATION STABILITY
   ========================================================= */

html.v5-low-power .hero-particle-canvas {
    opacity: 0.22;
}

html.v5-low-power .hero-pointer-glow {
    display: none;
}

html.v5-low-power .concept-hero-glow,
html.v5-low-power .v5-impact-glow,
html.v5-low-power .performance-glow {
    animation: none;
}

html.v5-low-power .hero-globe-animated {
    animation-duration: 11s;
}

html.v5-low-power .technology-card,
html.v5-low-power .showcase-card,
html.v5-low-power .v5-industry-card,
html.v5-low-power .v5-insight-card,
html.v5-low-power .v5-testimonial-card,
html.v5-low-power .v5-impact-card {
    --card-rotate-x: 0deg !important;
    --card-rotate-y: 0deg !important;
}

html.v5-document-hidden *,
html.v5-document-hidden *::before,
html.v5-document-hidden *::after {
    animation-play-state: paused !important;
}

[data-animation-paused] {
    animation-play-state: paused !important;
}

[data-animation-paused] *,
[data-animation-paused] *::before,
[data-animation-paused] *::after {
    animation-play-state: paused !important;
}

/* Prevent layout movement while images load */
.client-logo img,
.brand-logo,
.v5-footer-brand img,
.hozit-footer-logo img {
    height: auto;
}

/* Improve rendering isolation for large sections */
.concept-hero,
.technology-section,
.showcase-section,
.v5-industries,
.v5-impact,
.v5-testimonials,
.v5-insights,
.hozit-build-section,
.v5-footer {
    contain: layout style;
}

/* Do not use content-visibility on the hero or footer */
.technology-section,
.showcase-section,
.v5-industries,
.v5-impact,
.v5-testimonials,
.v5-insights {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
}

@media (max-width: 720px) {
    .hero-particle-canvas {
        display: none;
    }

    .hero-pointer-glow {
        display: none;
    }

    .concept-hero-glow,
    .v5-impact-glow,
    .performance-glow {
        filter: blur(4rem);
    }

    .technology-card::after,
    .showcase-card::after,
    .v5-industry-card::after,
    .v5-insight-card::after,
    .v5-testimonial-card::after,
    .v5-impact-card::after {
        display: none;
    }
}

.v5-image-error {
    opacity: 0;
    visibility: hidden;
}

/* =========================================================
   PHASE 3I — MOBILE NAVIGATION AND ACCESSIBILITY
   ========================================================= */

.menu-toggle {
    position: relative;
    z-index: 1002;
    width: 3.3rem;
    height: 3.3rem;
    padding: 0.75rem;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.32rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.055);
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.menu-toggle span {
    width: 1.35rem;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition:
        transform 220ms ease,
        opacity 180ms ease,
        width 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(0.4rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-0.4rem) rotate(-45deg);
}

body.mobile-navigation-open {
    overflow: hidden;
}

.mobile-navigation-backdrop {
    position: fixed;
    z-index: 998;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.72);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(5px);
    transition:
        opacity 220ms ease,
        visibility 220ms ease;
}

.mobile-navigation-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (max-width: 1050px) {
    .header-inner {
        position: relative;
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .menu-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .primary-navigation {
        position: fixed;
        z-index: 1001;
        top: 0;
        right: 0;
        width: min(28rem, 92vw);
        height: 100dvh;
        padding:
            clamp(7rem, 13vh, 9rem)
            clamp(1.6rem, 6vw, 3rem)
            3rem;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        overflow-y: auto;
        background:
            radial-gradient(
                circle at 100% 0%,
                rgba(255, 106, 0, 0.18),
                transparent 28%
            ),
            rgba(5, 5, 6, 0.98);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -2rem 0 5rem rgba(0, 0, 0, 0.45);
        transform: translateX(105%);
        visibility: hidden;
        transition:
            transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
            visibility 320ms ease;
    }

    .primary-navigation.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .primary-navigation a {
        min-height: 4.5rem;
        padding: 1rem 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: rgba(255, 255, 255, 0.82);
        font-family: var(--font-display);
        font-size: clamp(1.4rem, 5vw, 2rem);
        font-weight: 700;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .primary-navigation a::after {
        content: "↗";
        position: static;
        width: auto;
        height: auto;
        flex: 0 0 auto;
        background: none;
        color: var(--orange);
        font-size: 1rem;
        transform: none;
    }

    .primary-navigation a:hover,
    .primary-navigation a:focus-visible,
    .primary-navigation a.is-section-active {
        color: var(--orange);
    }

    .site-header {
        z-index: 1000;
    }
}

@media (max-width: 620px) {
    .header-inner {
        min-height: 5.5rem;
    }

    .brand-logo {
        width: 9rem;
        max-height: 3.5rem;
    }

    .menu-toggle {
        width: 3rem;
        height: 3rem;
    }

    .primary-navigation {
        width: 100%;
        padding-inline: 1.4rem;
        border-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .primary-navigation,
    .mobile-navigation-backdrop,
    .menu-toggle span {
        transition: none !important;
    }
}

/* =========================================================
   PHASE 3J — SEO AND ACCESSIBILITY POLISH
   ========================================================= */

.v5-skip-link {
    position: fixed;
    z-index: 20000;
    top: 0.8rem;
    left: 0.8rem;
    padding: 0.85rem 1.2rem;
    background: #ffffff;
    color: #080809;
    font-family: var(--font-display);
    font-weight: 800;
    border-radius: 0.35rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35);
    transform: translateY(-180%);
    transition: transform 180ms ease;
}

.v5-skip-link:focus {
    transform: translateY(0);
}

#main-content:focus {
    outline: none;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid #ff6a00;
    outline-offset: 4px;
}

img:not([alt]) {
    outline: 3px dashed #ff3b30;
}

@media (forced-colors: active) {
    .v5-skip-link,
    a:focus-visible,
    button:focus-visible {
        forced-color-adjust: none;
        outline: 3px solid Highlight;
    }
}

/* =========================================================
   V5 INTERNAL PAGE FOUNDATION
   ========================================================= */

.v5-inner-hero {
    position: relative;
    min-height: 34rem;
    padding: 12rem 0 6rem;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(255, 106, 0, 0.2),
            transparent 28%
        ),
        linear-gradient(135deg, #050506, #0d0d10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    isolation: isolate;
}

.v5-inner-hero-grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.08;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );
    background-size: 5rem 5rem;
}

.v5-inner-hero-glow {
    position: absolute;
    z-index: -1;
    right: -10rem;
    top: -10rem;
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.17);
    filter: blur(7rem);
}

.v5-inner-hero-content {
    position: relative;
    z-index: 1;
}

.v5-inner-hero h1 {
    max-width: 14ch;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(3.3rem, 7vw, 7.5rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.v5-inner-hero-intro {
    max-width: 48rem;
    margin: 2rem 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    line-height: 1.75;
}

.v5-standard-content {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: #080809;
}

.v5-content-panel {
    max-width: 62rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.05rem;
    line-height: 1.8;
}

.v5-content-panel h2,
.v5-content-panel h3 {
    color: #ffffff;
    font-family: var(--font-display);
    letter-spacing: -0.04em;
}

.v5-content-panel h2 {
    margin: 3.5rem 0 1.3rem;
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.v5-content-panel h3 {
    margin: 2.5rem 0 1rem;
    font-size: clamp(1.5rem, 2.6vw, 2.3rem);
}

.v5-content-panel a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

.v5-content-panel ul,
.v5-content-panel ol {
    padding-left: 1.4rem;
}

.v5-content-panel li + li {
    margin-top: 0.65rem;
}

@media (max-width: 720px) {
    .v5-inner-hero {
        min-height: 29rem;
        padding: 9rem 0 4rem;
    }
}

/* =========================================================
   V5 SERVICES DIRECTORY
   ========================================================= */

.v5-services-directory {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(255, 106, 0, 0.09),
            transparent 24%
        ),
        #080809;
}

.v5-directory-heading {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: clamp(3rem, 8vw, 8rem);
    margin-bottom: 4rem;
}

.v5-directory-heading h2 {
    max-width: 14ch;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-directory-heading h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-directory-heading > p {
    max-width: 31rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

.v5-services-directory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-service-directory-card {
    position: relative;
    min-height: 24rem;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        background 220ms ease,
        transform 220ms ease,
        border-color 220ms ease;
}

.v5-service-directory-card::before {
    content: "";
    position: absolute;
    right: -6rem;
    bottom: -7rem;
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.18);
    filter: blur(3rem);
    opacity: 0;
    transition: opacity 220ms ease;
}

.v5-service-directory-card:hover {
    background: rgba(255, 106, 0, 0.08);
    border-color: rgba(255, 106, 0, 0.52);
    transform: translateY(-0.3rem);
}

.v5-service-directory-card:hover::before {
    opacity: 1;
}

.v5-service-directory-number {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.v5-service-directory-icon {
    width: 3.8rem;
    height: 3.8rem;
    margin: 2rem 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 106, 0, 0.5);
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.08);
    color: var(--orange);
    font-size: 1.25rem;
}

.v5-service-directory-card > div:last-of-type {
    margin-top: 3rem;
}

.v5-service-directory-card h3 {
    margin: 0 0 1rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.2vw, 2.5rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.v5-service-directory-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.65;
}

.v5-service-directory-arrow {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    color: var(--orange);
    font-size: 1.25rem;
    transition: transform 180ms ease;
}

.v5-service-directory-card:hover .v5-service-directory-arrow {
    transform: translate(0.3rem, -0.3rem);
}

.v5-services-cta {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: var(--orange);
    color: #080809;
}

.v5-services-cta-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-services-cta h2 {
    max-width: 13ch;
    margin: 0;
    color: #080809;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.96;
    letter-spacing: -0.065em;
}

.v5-services-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-services-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1050px) {
    .v5-directory-heading,
    .v5-services-cta-inner {
        grid-template-columns: 1fr;
    }

    .v5-services-directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-services-cta-actions {
        max-width: 31rem;
    }
}

@media (max-width: 650px) {
    .v5-services-directory-grid {
        grid-template-columns: 1fr;
    }

    .v5-service-directory-card {
        min-height: 20rem;
    }
}

/* =========================================================
   V5 WEBSITE HOSTING PAGE
   ========================================================= */

.v5-hosting-intro,
.v5-hosting-packages,
.v5-hosting-features,
.v5-hosting-process,
.v5-hosting-faq {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.v5-hosting-intro,
.v5-hosting-features,
.v5-hosting-faq {
    background: #080809;
}

.v5-hosting-packages,
.v5-hosting-process {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.09),
            transparent 25%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-hosting-intro-grid,
.v5-hosting-section-heading,
.v5-hosting-faq-grid,
.v5-hosting-final-cta-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-hosting-intro h2,
.v5-hosting-section-heading h2,
.v5-hosting-faq h2,
.v5-hosting-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-hosting-intro h2 span,
.v5-hosting-section-heading h2 span,
.v5-hosting-faq h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-hosting-intro-copy,
.v5-hosting-section-heading > p {
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.8;
}

.v5-hosting-intro-copy p:first-child {
    margin-top: 0;
}

.v5-hosting-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.v5-hosting-badges span {
    padding: 0.65rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.v5-hosting-badges i {
    color: var(--orange);
}

.v5-hosting-section-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-hosting-section-heading > p {
    max-width: 31rem;
    margin: 0;
}

.v5-hosting-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.v5-hosting-package {
    position: relative;
    min-height: 44rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
}

.v5-hosting-package:hover {
    transform: translateY(-0.4rem);
    border-color: rgba(255, 106, 0, 0.56);
}

.v5-package-featured {
    background:
        linear-gradient(
            155deg,
            rgba(255, 106, 0, 0.2),
            rgba(255, 106, 0, 0.035)
        );
    border-color: rgba(255, 106, 0, 0.62);
}

.v5-package-recommended {
    position: absolute;
    right: 1.3rem;
    top: 1.3rem;
    padding: 0.5rem 0.7rem;
    background: var(--orange);
    color: #080809;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.v5-package-label {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.v5-hosting-package h3 {
    margin: 1.2rem 0 1rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3.3rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.v5-package-top p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

.v5-package-price {
    margin: 2.5rem 0 2rem;
    display: flex;
    align-items: end;
    gap: 0.7rem;
}

.v5-package-price strong {
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4vw, 4.7rem);
    line-height: 0.9;
    letter-spacing: -0.07em;
}

.v5-package-price span {
    color: rgba(255, 255, 255, 0.42);
}

.v5-hosting-package ul {
    margin: 0 0 2.5rem;
    padding: 0;
    list-style: none;
}

.v5-hosting-package li {
    position: relative;
    padding: 0.7rem 0 0.7rem 1.7rem;
    color: rgba(255, 255, 255, 0.64);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.v5-hosting-package li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 900;
}

.v5-package-button {
    min-height: 4rem;
    margin-top: auto;
    padding: 0.9rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--orange);
    color: #080809;
    font-weight: 800;
    transition:
        transform 180ms ease,
        background 180ms ease;
}

.v5-package-button:hover {
    transform: translateY(-0.2rem);
    background: var(--orange-light);
}

.v5-hosting-price-note {
    margin: 1.5rem 0 0;
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.78rem;
    line-height: 1.6;
}

.v5-hosting-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-hosting-feature {
    min-height: 20rem;
    padding: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-hosting-feature i {
    color: var(--orange);
    font-size: 1.8rem;
}

.v5-hosting-feature h3 {
    margin: 4rem 0 1rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: -0.04em;
}

.v5-hosting-feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-hosting-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 4rem;
}

.v5-hosting-process-grid article {
    min-height: 20rem;
    padding: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-hosting-process-grid article:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-hosting-process-grid article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-hosting-process-grid h3 {
    margin: 5rem 0 1rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 2rem;
}

.v5-hosting-process-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-faq-list {
    display: grid;
    gap: 0;
}

.v5-faq-list details {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.v5-faq-list details:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.v5-faq-list summary {
    padding: 1.5rem 2.5rem 1.5rem 0;
    cursor: pointer;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
}

.v5-faq-list details p {
    margin: 0;
    padding: 0 2rem 1.7rem 0;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.75;
}

.v5-hosting-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-hosting-final-cta h2 {
    color: #080809;
}

.v5-hosting-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-hosting-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1050px) {
    .v5-hosting-intro-grid,
    .v5-hosting-section-heading,
    .v5-hosting-faq-grid,
    .v5-hosting-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .v5-hosting-package-grid,
    .v5-hosting-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-hosting-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-hosting-final-actions {
        max-width: 31rem;
    }
}

@media (max-width: 680px) {
    .v5-hosting-package-grid,
    .v5-hosting-feature-grid,
    .v5-hosting-process-grid {
        grid-template-columns: 1fr;
    }

    .v5-hosting-package {
        min-height: auto;
    }

    .v5-hosting-process-grid article {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* =========================================================
   V5 DOMAIN REGISTRATION PAGE
   ========================================================= */

.v5-domain-search,
.v5-domain-extensions,
.v5-domain-benefits,
.v5-domain-process,
.v5-domain-faq {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.v5-domain-search,
.v5-domain-benefits,
.v5-domain-faq {
    background: #080809;
}

.v5-domain-extensions,
.v5-domain-process {
    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(255, 106, 0, 0.09),
            transparent 25%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-domain-search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-domain-search h2 {
    max-width: 13ch;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-domain-search h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-domain-search-grid > div > p:last-child {
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.56);
    line-height: 1.8;
}

.v5-domain-search-form {
    padding: 2rem;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-domain-search-form label {
    display: block;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 700;
}

.v5-domain-search-control {
    display: grid;
    grid-template-columns: 1fr auto;
}

.v5-domain-search-control input {
    min-width: 0;
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 0;
    background: rgba(255, 255, 255, 0.035);
    color: #ffffff;
    font: inherit;
}

.v5-domain-search-control input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: inset 0 0 0 1px var(--orange);
}

.v5-domain-search-control button {
    padding: 1rem 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: 0;
    background: var(--orange);
    color: #080809;
    font-family: var(--font-display);
    font-weight: 800;
    cursor: pointer;
}

.v5-domain-search-form > p {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.76rem;
}

.v5-domain-extension-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-domain-extension-card {
    min-height: 25rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 200ms ease,
        background 200ms ease,
        border-color 200ms ease;
}

.v5-domain-extension-card:hover {
    transform: translateY(-0.3rem);
    background: rgba(255, 106, 0, 0.07);
    border-color: rgba(255, 106, 0, 0.5);
}

.v5-domain-extension-card > span:first-child {
    color: var(--orange);
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.07em;
}

.v5-domain-extension-card h3 {
    margin: auto 0 1rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: -0.04em;
}

.v5-domain-extension-card p {
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-domain-extension-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--orange);
    font-weight: 800;
}

@media (max-width: 1050px) {
    .v5-domain-search-grid {
        grid-template-columns: 1fr;
    }

    .v5-domain-extension-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .v5-domain-extension-grid {
        grid-template-columns: 1fr;
    }

    .v5-domain-search-control {
        grid-template-columns: 1fr;
    }

    .v5-domain-search-control input {
        border-right: 1px solid rgba(255, 255, 255, 0.14);
    }

    .v5-domain-search-control button {
        justify-content: center;
    }
}

/* =========================================================
   V5 WEB DESIGN PAGE
   ========================================================= */

.v5-web-intro,
.v5-web-packages,
.v5-web-capabilities,
.v5-web-process,
.v5-web-deliverables,
.v5-web-faq {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.v5-web-intro,
.v5-web-capabilities,
.v5-web-deliverables,
.v5-web-faq {
    background: #080809;
}

.v5-web-packages,
.v5-web-process {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.09),
            transparent 25%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-web-intro-grid,
.v5-web-section-heading,
.v5-web-deliverables-grid,
.v5-web-faq-grid,
.v5-web-final-cta-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-web-section-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-web-intro h2,
.v5-web-section-heading h2,
.v5-web-deliverables h2,
.v5-web-faq h2,
.v5-web-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-web-intro h2 span,
.v5-web-section-heading h2 span,
.v5-web-deliverables h2 span,
.v5-web-faq h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-web-intro-copy,
.v5-web-section-heading > p {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-web-section-heading > p {
    max-width: 31rem;
    margin: 0;
}

.v5-web-intro-copy p:first-child {
    margin-top: 0;
}

.v5-web-intro-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.v5-web-intro-badges span {
    padding: 0.65rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.v5-web-intro-badges i {
    color: var(--orange);
}

.v5-web-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.v5-web-package {
    position: relative;
    min-height: 50rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        transform 220ms ease,
        border-color 220ms ease;
}

.v5-web-package:hover {
    transform: translateY(-0.4rem);
    border-color: rgba(255, 106, 0, 0.56);
}

.v5-web-package-featured {
    background:
        linear-gradient(
            155deg,
            rgba(255, 106, 0, 0.2),
            rgba(255, 106, 0, 0.035)
        );
    border-color: rgba(255, 106, 0, 0.62);
}

.v5-web-recommended {
    position: absolute;
    top: 1.3rem;
    right: 1.3rem;
    padding: 0.5rem 0.7rem;
    background: var(--orange);
    color: #080809;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.v5-web-package-label {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.v5-web-package h3 {
    margin: 1.2rem 0 1rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3.3rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.v5-web-package > p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

.v5-web-package-price {
    margin: 2.4rem 0 2rem;
    display: flex;
    align-items: end;
    gap: 0.7rem;
}

.v5-web-package-price strong {
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4vw, 4.7rem);
    line-height: 0.9;
    letter-spacing: -0.07em;
}

.v5-web-package-price span {
    color: rgba(255, 255, 255, 0.42);
}

.v5-web-package ul {
    margin: 0 0 2.5rem;
    padding: 0;
    list-style: none;
}

.v5-web-package li {
    position: relative;
    padding: 0.7rem 0 0.7rem 1.7rem;
    color: rgba(255, 255, 255, 0.64);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.v5-web-package li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 900;
}

.v5-web-package-button {
    min-height: 4rem;
    margin-top: auto;
    padding: 0.9rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--orange);
    color: #080809;
    font-weight: 800;
    transition:
        transform 180ms ease,
        background 180ms ease;
}

.v5-web-package-button:hover {
    transform: translateY(-0.2rem);
    background: var(--orange-light);
}

.v5-web-price-note {
    margin: 1.5rem 0 0;
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.78rem;
    line-height: 1.6;
}

.v5-web-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-web-capability {
    min-height: 21rem;
    padding: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-web-capability i {
    color: var(--orange);
    font-size: 1.8rem;
}

.v5-web-capability h3 {
    margin: 4rem 0 1rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: -0.04em;
}

.v5-web-capability p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-web-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.v5-web-process-grid article {
    min-height: 21rem;
    padding: 1.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-web-process-grid article:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-web-process-grid article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-web-process-grid h3 {
    margin: 5rem 0 1rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.v5-web-process-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-web-deliverables-list {
    display: grid;
}

.v5-web-deliverables-list article {
    padding: 1.6rem 0;
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.v5-web-deliverables-list article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.v5-web-deliverables-list article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-web-deliverables-list h3 {
    margin: 0 0 0.6rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.v5-web-deliverables-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-web-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-web-final-cta h2 {
    color: #080809;
}

.v5-web-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-web-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1050px) {
    .v5-web-intro-grid,
    .v5-web-section-heading,
    .v5-web-deliverables-grid,
    .v5-web-faq-grid,
    .v5-web-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .v5-web-package-grid,
    .v5-web-capability-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-web-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-web-final-actions {
        max-width: 31rem;
    }
}

@media (max-width: 680px) {
    .v5-web-package-grid,
    .v5-web-capability-grid,
    .v5-web-process-grid {
        grid-template-columns: 1fr;
    }

    .v5-web-package {
        min-height: auto;
    }

    .v5-web-process-grid article {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* =========================================================
   V5 APPLICATION DEVELOPMENT PAGE
   ========================================================= */

.v5-app-intro,
.v5-app-solutions,
.v5-app-platform,
.v5-app-process,
.v5-app-use-cases,
.v5-app-faq {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.v5-app-intro,
.v5-app-platform,
.v5-app-use-cases,
.v5-app-faq {
    background: #080809;
}

.v5-app-solutions,
.v5-app-process {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.09),
            transparent 25%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-app-intro-grid,
.v5-app-section-heading,
.v5-app-platform-grid,
.v5-app-faq-grid,
.v5-app-final-cta-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-app-section-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-app-intro h2,
.v5-app-section-heading h2,
.v5-app-platform h2,
.v5-app-faq h2,
.v5-app-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-app-intro h2 span,
.v5-app-section-heading h2 span,
.v5-app-platform h2 span,
.v5-app-faq h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-app-intro-copy,
.v5-app-section-heading > p,
.v5-app-platform-copy > p {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-app-section-heading > p {
    max-width: 31rem;
    margin: 0;
}

.v5-app-intro-copy p:first-child {
    margin-top: 0;
}

.v5-app-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.v5-app-badges span {
    padding: 0.65rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.v5-app-badges i {
    color: var(--orange);
}

.v5-app-solution-grid,
.v5-app-use-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-app-solution,
.v5-app-use-case-grid article {
    min-height: 27rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 200ms ease,
        background 200ms ease,
        border-color 200ms ease;
}

.v5-app-solution:hover,
.v5-app-use-case-grid article:hover {
    transform: translateY(-0.3rem);
    background: rgba(255, 106, 0, 0.07);
    border-color: rgba(255, 106, 0, 0.5);
}

.v5-app-solution-number {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-app-solution i,
.v5-app-use-case-grid i {
    margin-top: 2.5rem;
    color: var(--orange);
    font-size: 1.8rem;
}

.v5-app-solution h3,
.v5-app-use-case-grid h3 {
    margin: auto 0 1rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.9rem;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.v5-app-solution p,
.v5-app-use-case-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-app-solution ul {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.v5-app-solution li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.4rem;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.86rem;
}

.v5-app-solution li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--orange);
}

.v5-app-platform-grid {
    align-items: center;
}

.v5-app-platform-list {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
}

.v5-app-platform-list > div {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-app-platform-list i {
    width: 2.5rem;
    color: var(--orange);
    font-size: 1.2rem;
}

.v5-app-platform-list span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.v5-app-platform-list strong {
    color: #ffffff;
}

.v5-app-platform-list small {
    color: rgba(255, 255, 255, 0.45);
}

.v5-app-code-window {
    overflow: hidden;
    background: #0f1014;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.4);
}

.v5-app-code-toolbar {
    padding: 1rem;
    display: flex;
    gap: 0.45rem;
    background: #17181d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-app-code-toolbar span {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.v5-app-code-toolbar span:first-child {
    background: var(--orange);
}

.v5-app-code-window pre {
    margin: 0;
    padding: clamp(1.5rem, 4vw, 3rem);
    overflow-x: auto;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.8;
}

.v5-app-code-window code span {
    color: var(--orange);
}

.v5-app-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.v5-app-process-grid article {
    min-height: 20rem;
    padding: 1.8rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-app-process-grid article:nth-child(-n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-app-process-grid article:nth-child(3n+1) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-app-process-grid article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-app-process-grid h3 {
    margin: 4.5rem 0 1rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.9rem;
}

.v5-app-process-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-app-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-app-final-cta h2 {
    color: #080809;
}

.v5-app-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-app-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1050px) {
    .v5-app-intro-grid,
    .v5-app-section-heading,
    .v5-app-platform-grid,
    .v5-app-faq-grid,
    .v5-app-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .v5-app-solution-grid,
    .v5-app-use-case-grid,
    .v5-app-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-app-process-grid article:nth-child(-n+3),
    .v5-app-process-grid article:nth-child(3n+1) {
        border-top: 0;
        border-left: 0;
    }

    .v5-app-process-grid article:nth-child(-n+2) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .v5-app-process-grid article:nth-child(2n+1) {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .v5-app-final-actions {
        max-width: 31rem;
    }
}

@media (max-width: 680px) {
    .v5-app-solution-grid,
    .v5-app-use-case-grid,
    .v5-app-process-grid {
        grid-template-columns: 1fr;
    }

    .v5-app-process-grid article,
    .v5-app-process-grid article:nth-child(-n+2),
    .v5-app-process-grid article:nth-child(2n+1) {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-top: 0;
    }

    .v5-app-process-grid article:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* =========================================================
   V5 CYBERSECURITY PAGE
   ========================================================= */

.v5-cyber-intro,
.v5-cyber-services,
.v5-cyber-operations,
.v5-cyber-framework,
.v5-cyber-risks,
.v5-cyber-faq {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.v5-cyber-intro,
.v5-cyber-operations,
.v5-cyber-risks,
.v5-cyber-faq {
    background: #080809;
}

.v5-cyber-services,
.v5-cyber-framework {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.09),
            transparent 25%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-cyber-intro-grid,
.v5-cyber-section-heading,
.v5-cyber-operations-grid,
.v5-cyber-faq-grid,
.v5-cyber-final-cta-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-cyber-section-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-cyber-intro h2,
.v5-cyber-section-heading h2,
.v5-cyber-operations h2,
.v5-cyber-faq h2,
.v5-cyber-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-cyber-intro h2 span,
.v5-cyber-section-heading h2 span,
.v5-cyber-operations h2 span,
.v5-cyber-faq h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-cyber-intro-copy,
.v5-cyber-section-heading > p,
.v5-cyber-operations-copy > p {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-cyber-section-heading > p {
    max-width: 31rem;
    margin: 0;
}

.v5-cyber-intro-copy p:first-child {
    margin-top: 0;
}

.v5-cyber-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.v5-cyber-badges span {
    padding: 0.65rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.v5-cyber-badges i {
    color: var(--orange);
}

.v5-cyber-service-grid,
.v5-cyber-risk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-cyber-service-card,
.v5-cyber-risk-grid article {
    min-height: 25rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 200ms ease,
        background 200ms ease,
        border-color 200ms ease;
}

.v5-cyber-service-card:hover,
.v5-cyber-risk-grid article:hover {
    transform: translateY(-0.3rem);
    background: rgba(255, 106, 0, 0.07);
    border-color: rgba(255, 106, 0, 0.5);
}

.v5-cyber-service-number {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-cyber-service-card > i,
.v5-cyber-risk-grid i {
    margin-top: 2.5rem;
    color: var(--orange);
    font-size: 1.8rem;
}

.v5-cyber-service-card h3,
.v5-cyber-risk-grid h3 {
    margin: auto 0 1rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.9rem;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.v5-cyber-service-card p,
.v5-cyber-risk-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-cyber-service-link {
    margin-top: 1.5rem;
    color: var(--orange);
    font-weight: 800;
    font-size: 0.85rem;
}

.v5-cyber-operations-grid {
    align-items: center;
}

.v5-cyber-operations-list {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
}

.v5-cyber-operations-list > div {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-cyber-operations-list i {
    width: 2.5rem;
    color: var(--orange);
    font-size: 1.2rem;
}

.v5-cyber-operations-list span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.v5-cyber-operations-list strong {
    color: #ffffff;
}

.v5-cyber-operations-list small {
    color: rgba(255, 255, 255, 0.45);
}

.v5-cyber-monitor {
    padding: 1.5rem;
    background: #0e1013;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.42);
}

.v5-cyber-monitor-header {
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.62);
}

.v5-cyber-monitor-header strong {
    color: #52d273;
    font-size: 0.78rem;
}

.v5-cyber-monitor-header i {
    margin-right: 0.35rem;
    font-size: 0.5rem;
}

.v5-cyber-monitor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.v5-cyber-monitor-stat,
.v5-cyber-monitor-chart,
.v5-cyber-monitor-feed {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.v5-cyber-monitor-stat span {
    display: block;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.72rem;
}

.v5-cyber-monitor-stat strong {
    display: block;
    margin-top: 1.2rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.v5-cyber-monitor-chart,
.v5-cyber-monitor-feed {
    grid-column: 1 / -1;
}

.v5-cyber-monitor-chart {
    height: 10rem;
    display: flex;
    align-items: end;
    gap: 0.7rem;
}

.v5-cyber-monitor-chart span {
    flex: 1;
    min-height: 20%;
    background:
        linear-gradient(
            to top,
            rgba(255, 106, 0, 0.85),
            rgba(255, 106, 0, 0.15)
        );
}

.v5-cyber-monitor-chart span:nth-child(1) {
    height: 35%;
}

.v5-cyber-monitor-chart span:nth-child(2) {
    height: 48%;
}

.v5-cyber-monitor-chart span:nth-child(3) {
    height: 70%;
}

.v5-cyber-monitor-chart span:nth-child(4) {
    height: 54%;
}

.v5-cyber-monitor-chart span:nth-child(5) {
    height: 82%;
}

.v5-cyber-monitor-chart span:nth-child(6) {
    height: 63%;
}

.v5-cyber-monitor-chart span:nth-child(7) {
    height: 90%;
}

.v5-cyber-monitor-chart span:nth-child(8) {
    height: 58%;
}

.v5-cyber-monitor-feed p {
    margin: 0;
    padding: 0.65rem 0;
    color: rgba(255, 255, 255, 0.58);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.v5-cyber-monitor-feed p:last-child {
    border-bottom: 0;
}

.v5-cyber-monitor-feed i {
    margin-right: 0.65rem;
    color: #52d273;
}

.v5-cyber-framework-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.v5-cyber-framework-grid article {
    min-height: 20rem;
    padding: 1.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-cyber-framework-grid article:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-cyber-framework-grid article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-cyber-framework-grid h3 {
    margin: 5rem 0 1rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.v5-cyber-framework-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-cyber-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-cyber-final-cta h2 {
    color: #080809;
}

.v5-cyber-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-cyber-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1050px) {
    .v5-cyber-intro-grid,
    .v5-cyber-section-heading,
    .v5-cyber-operations-grid,
    .v5-cyber-faq-grid,
    .v5-cyber-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .v5-cyber-service-grid,
    .v5-cyber-risk-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-cyber-framework-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-cyber-framework-grid article {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .v5-cyber-final-actions {
        max-width: 31rem;
    }
}

@media (max-width: 680px) {
    .v5-cyber-service-grid,
    .v5-cyber-risk-grid,
    .v5-cyber-framework-grid,
    .v5-cyber-monitor-grid {
        grid-template-columns: 1fr;
    }

    .v5-cyber-monitor-chart,
    .v5-cyber-monitor-feed {
        grid-column: auto;
    }
}

/* =========================================================
   V5 IT SUPPORT PAGE
   ========================================================= */

.v5-support-intro,
.v5-support-services,
.v5-support-models,
.v5-support-operations,
.v5-support-benefits,
.v5-support-process,
.v5-support-faq {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.v5-support-intro,
.v5-support-operations,
.v5-support-benefits,
.v5-support-faq {
    background: #080809;
}

.v5-support-services,
.v5-support-models,
.v5-support-process {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.09),
            transparent 25%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-support-intro-grid,
.v5-support-section-heading,
.v5-support-operations-grid,
.v5-support-faq-grid,
.v5-support-final-cta-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-support-section-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-support-intro h2,
.v5-support-section-heading h2,
.v5-support-operations h2,
.v5-support-faq h2,
.v5-support-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-support-intro h2 span,
.v5-support-section-heading h2 span,
.v5-support-operations h2 span,
.v5-support-faq h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-support-intro-copy,
.v5-support-section-heading > p,
.v5-support-operations-copy > p {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-support-section-heading > p {
    max-width: 31rem;
    margin: 0;
}

.v5-support-intro-copy p:first-child {
    margin-top: 0;
}

.v5-support-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.v5-support-badges span {
    padding: 0.65rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.v5-support-badges i {
    color: var(--orange);
}

.v5-support-service-grid,
.v5-support-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-support-service-card,
.v5-support-benefit-grid article {
    min-height: 26rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 200ms ease,
        background 200ms ease,
        border-color 200ms ease;
}

.v5-support-service-card:hover,
.v5-support-benefit-grid article:hover {
    transform: translateY(-0.3rem);
    background: rgba(255, 106, 0, 0.07);
    border-color: rgba(255, 106, 0, 0.5);
}

.v5-support-service-card > span {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-support-service-card > i,
.v5-support-benefit-grid i {
    margin-top: 2.5rem;
    color: var(--orange);
    font-size: 1.8rem;
}

.v5-support-service-card h3,
.v5-support-benefit-grid h3 {
    margin: auto 0 1rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.9rem;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.v5-support-service-card p,
.v5-support-benefit-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-support-service-card ul {
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
}

.v5-support-service-card li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.3rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.v5-support-service-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--orange);
}

.v5-support-model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.v5-support-model {
    position: relative;
    min-height: 39rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        transform 200ms ease,
        border-color 200ms ease;
}

.v5-support-model:hover {
    transform: translateY(-0.4rem);
    border-color: rgba(255, 106, 0, 0.55);
}

.v5-support-model-featured {
    background:
        linear-gradient(
            155deg,
            rgba(255, 106, 0, 0.2),
            rgba(255, 106, 0, 0.035)
        );
    border-color: rgba(255, 106, 0, 0.62);
}

.v5-support-model-recommended {
    position: absolute;
    right: 1.3rem;
    top: 1.3rem;
    padding: 0.5rem 0.7rem;
    background: var(--orange);
    color: #080809;
    font-size: 0.63rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.v5-support-model-label {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.v5-support-model h3 {
    margin: 1.2rem 0 1rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.v5-support-model > p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-support-model ul {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.v5-support-model li {
    position: relative;
    padding: 0.7rem 0 0.7rem 1.7rem;
    color: rgba(255, 255, 255, 0.64);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.v5-support-model li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 900;
}

.v5-support-model > a {
    min-height: 4rem;
    margin-top: auto;
    padding: 0.9rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--orange);
    color: #080809;
    font-weight: 800;
}

.v5-support-operations-grid {
    align-items: center;
}

.v5-support-operations-list {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
}

.v5-support-operations-list > div {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-support-operations-list i {
    width: 2.5rem;
    color: var(--orange);
    font-size: 1.2rem;
}

.v5-support-operations-list span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.v5-support-operations-list strong {
    color: #ffffff;
}

.v5-support-operations-list small {
    color: rgba(255, 255, 255, 0.45);
}

.v5-support-dashboard {
    padding: 1.5rem;
    background: #0e1013;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.42);
}

.v5-support-dashboard-header {
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.62);
}

.v5-support-dashboard-header strong {
    color: #52d273;
    font-size: 0.78rem;
}

.v5-support-dashboard-header i {
    margin-right: 0.35rem;
    font-size: 0.5rem;
}

.v5-support-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.v5-support-dashboard-stat,
.v5-support-ticket-list {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.v5-support-dashboard-stat > span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
}

.v5-support-dashboard-stat > strong {
    display: block;
    margin-top: 1.2rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.7rem;
}

.v5-support-ticket-list {
    grid-column: 1 / -1;
}

.v5-support-ticket-list > div {
    padding: 0.85rem 0;
    display: grid;
    grid-template-columns: 6rem 1fr auto;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.v5-support-ticket-list > div:last-child {
    border-bottom: 0;
}

.v5-support-ticket-list span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.72rem;
}

.v5-support-ticket-list .v5-support-ticket-priority {
    color: var(--orange);
}

.v5-support-ticket-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.v5-support-ticket-list strong {
    color: #52d273;
    font-size: 0.72rem;
}

.v5-support-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.v5-support-process-grid article {
    min-height: 20rem;
    padding: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-support-process-grid article:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-support-process-grid article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-support-process-grid h3 {
    margin: 5rem 0 1rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.9rem;
}

.v5-support-process-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-support-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-support-final-cta h2 {
    color: #080809;
}

.v5-support-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-support-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1050px) {
    .v5-support-intro-grid,
    .v5-support-section-heading,
    .v5-support-operations-grid,
    .v5-support-faq-grid,
    .v5-support-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .v5-support-service-grid,
    .v5-support-benefit-grid,
    .v5-support-model-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-support-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-support-process-grid article {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .v5-support-final-actions {
        max-width: 31rem;
    }
}

@media (max-width: 680px) {
    .v5-support-service-grid,
    .v5-support-benefit-grid,
    .v5-support-model-grid,
    .v5-support-process-grid,
    .v5-support-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .v5-support-model {
        min-height: auto;
    }

    .v5-support-ticket-list {
        grid-column: auto;
    }

    .v5-support-ticket-list > div {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
}

/* =========================================================
   V5 SERVER SUPPORT PAGE
   ========================================================= */

.v5-server-intro,
.v5-server-services,
.v5-server-models,
.v5-server-operations,
.v5-server-platforms,
.v5-server-process,
.v5-server-faq {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.v5-server-intro,
.v5-server-operations,
.v5-server-platforms,
.v5-server-faq {
    background: #080809;
}

.v5-server-services,
.v5-server-models,
.v5-server-process {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.09),
            transparent 25%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-server-intro-grid,
.v5-server-section-heading,
.v5-server-operations-grid,
.v5-server-faq-grid,
.v5-server-final-cta-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-server-section-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-server-intro h2,
.v5-server-section-heading h2,
.v5-server-operations h2,
.v5-server-faq h2,
.v5-server-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-server-intro h2 span,
.v5-server-section-heading h2 span,
.v5-server-operations h2 span,
.v5-server-faq h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-server-intro-copy,
.v5-server-section-heading > p,
.v5-server-operations-copy > p {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-server-section-heading > p {
    max-width: 31rem;
    margin: 0;
}

.v5-server-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.v5-server-badges span {
    padding: 0.65rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.v5-server-badges i {
    color: var(--orange);
}

.v5-server-service-grid,
.v5-server-platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-server-service-card,
.v5-server-platform-grid article {
    min-height: 26rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 200ms ease,
        background 200ms ease,
        border-color 200ms ease;
}

.v5-server-service-card:hover,
.v5-server-platform-grid article:hover {
    transform: translateY(-0.3rem);
    background: rgba(255, 106, 0, 0.07);
    border-color: rgba(255, 106, 0, 0.5);
}

.v5-server-service-card > span {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-server-service-card > i,
.v5-server-platform-grid i {
    margin-top: 2.5rem;
    color: var(--orange);
    font-size: 1.8rem;
}

.v5-server-service-card h3,
.v5-server-platform-grid h3 {
    margin: auto 0 1rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.9rem;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.v5-server-service-card p,
.v5-server-platform-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-server-service-card ul {
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
}

.v5-server-service-card li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.3rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.v5-server-service-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--orange);
}

.v5-server-model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.v5-server-model {
    position: relative;
    min-height: 39rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        transform 200ms ease,
        border-color 200ms ease;
}

.v5-server-model:hover {
    transform: translateY(-0.4rem);
    border-color: rgba(255, 106, 0, 0.55);
}

.v5-server-model-featured {
    background:
        linear-gradient(
            155deg,
            rgba(255, 106, 0, 0.2),
            rgba(255, 106, 0, 0.035)
        );
    border-color: rgba(255, 106, 0, 0.62);
}

.v5-server-model-recommended {
    position: absolute;
    right: 1.3rem;
    top: 1.3rem;
    padding: 0.5rem 0.7rem;
    background: var(--orange);
    color: #080809;
    font-size: 0.63rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.v5-server-model-label {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.v5-server-model h3 {
    margin: 1.2rem 0 1rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.v5-server-model > p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-server-model ul {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.v5-server-model li {
    position: relative;
    padding: 0.7rem 0 0.7rem 1.7rem;
    color: rgba(255, 255, 255, 0.64);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.v5-server-model li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 900;
}

.v5-server-model > a {
    min-height: 4rem;
    margin-top: auto;
    padding: 0.9rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--orange);
    color: #080809;
    font-weight: 800;
}

.v5-server-operations-grid {
    align-items: center;
}

.v5-server-operations-list {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
}

.v5-server-operations-list > div {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-server-operations-list i {
    width: 2.5rem;
    color: var(--orange);
    font-size: 1.2rem;
}

.v5-server-operations-list span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.v5-server-operations-list strong {
    color: #ffffff;
}

.v5-server-operations-list small {
    color: rgba(255, 255, 255, 0.45);
}

.v5-server-dashboard {
    padding: 1.5rem;
    background: #0e1013;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.42);
}

.v5-server-dashboard-header {
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.62);
}

.v5-server-dashboard-header strong {
    color: #52d273;
    font-size: 0.78rem;
}

.v5-server-dashboard-header i {
    margin-right: 0.35rem;
    font-size: 0.5rem;
}

.v5-server-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.v5-server-dashboard-stat,
.v5-server-resource {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.v5-server-dashboard-stat span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
}

.v5-server-dashboard-stat strong {
    display: block;
    margin-top: 1.2rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.7rem;
}

.v5-server-resource {
    grid-column: 1 / -1;
}

.v5-server-resource > div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.58);
}

.v5-server-resource-bar {
    height: 0.5rem;
    margin-top: 0.8rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.v5-server-resource-bar span {
    display: block;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            var(--orange),
            var(--orange-light)
        );
}

.v5-server-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.v5-server-process-grid article {
    min-height: 20rem;
    padding: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-server-process-grid article:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-server-process-grid article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-server-process-grid h3 {
    margin: 5rem 0 1rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.9rem;
}

.v5-server-process-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-server-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-server-final-cta h2 {
    color: #080809;
}

.v5-server-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-server-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1050px) {
    .v5-server-intro-grid,
    .v5-server-section-heading,
    .v5-server-operations-grid,
    .v5-server-faq-grid,
    .v5-server-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .v5-server-service-grid,
    .v5-server-platform-grid,
    .v5-server-model-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-server-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-server-process-grid article {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .v5-server-final-actions {
        max-width: 31rem;
    }
}

@media (max-width: 680px) {
    .v5-server-service-grid,
    .v5-server-platform-grid,
    .v5-server-model-grid,
    .v5-server-process-grid,
    .v5-server-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .v5-server-model {
        min-height: auto;
    }

    .v5-server-resource {
        grid-column: auto;
    }
}

/* =========================================================
   V5 MICROSOFT 365 PAGE
   ========================================================= */

.v5-m365-intro,
.v5-m365-services,
.v5-m365-platform,
.v5-m365-migration,
.v5-m365-management,
.v5-m365-benefits,
.v5-m365-faq {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.v5-m365-intro,
.v5-m365-platform,
.v5-m365-benefits,
.v5-m365-faq {
    background: #080809;
}

.v5-m365-services,
.v5-m365-migration,
.v5-m365-management {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.09),
            transparent 25%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-m365-intro-grid,
.v5-m365-section-heading,
.v5-m365-platform-grid,
.v5-m365-faq-grid,
.v5-m365-final-cta-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-m365-section-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-m365-intro h2,
.v5-m365-section-heading h2,
.v5-m365-platform h2,
.v5-m365-faq h2,
.v5-m365-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-m365-intro h2 span,
.v5-m365-section-heading h2 span,
.v5-m365-platform h2 span,
.v5-m365-faq h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-m365-intro-copy,
.v5-m365-section-heading > p,
.v5-m365-platform-copy > p {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-m365-section-heading > p {
    max-width: 31rem;
    margin: 0;
}

.v5-m365-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.v5-m365-badges span {
    padding: 0.65rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.v5-m365-badges i {
    color: var(--orange);
}

.v5-m365-service-grid,
.v5-m365-management-grid,
.v5-m365-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-m365-service-card,
.v5-m365-management-grid article,
.v5-m365-benefit-grid article {
    min-height: 25rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 200ms ease,
        background 200ms ease,
        border-color 200ms ease;
}

.v5-m365-service-card:hover,
.v5-m365-management-grid article:hover,
.v5-m365-benefit-grid article:hover {
    transform: translateY(-0.3rem);
    background: rgba(255, 106, 0, 0.07);
    border-color: rgba(255, 106, 0, 0.5);
}

.v5-m365-service-card > span {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-m365-service-card > i,
.v5-m365-management-grid i,
.v5-m365-benefit-grid i {
    margin-top: 2.5rem;
    color: var(--orange);
    font-size: 1.8rem;
}

.v5-m365-service-card h3,
.v5-m365-management-grid h3,
.v5-m365-benefit-grid h3 {
    margin: auto 0 1rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.9rem;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.v5-m365-service-card p,
.v5-m365-management-grid p,
.v5-m365-benefit-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-m365-service-card ul {
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
}

.v5-m365-service-card li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.3rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.v5-m365-service-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--orange);
}

.v5-m365-platform-grid {
    align-items: center;
}

.v5-m365-platform-list {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
}

.v5-m365-platform-list > div {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-m365-platform-list i {
    width: 2.5rem;
    color: var(--orange);
    font-size: 1.2rem;
}

.v5-m365-platform-list span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.v5-m365-platform-list strong {
    color: #ffffff;
}

.v5-m365-platform-list small {
    color: rgba(255, 255, 255, 0.45);
}

.v5-m365-dashboard {
    padding: 1.5rem;
    background: #0e1013;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.42);
}

.v5-m365-dashboard-header {
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.62);
}

.v5-m365-dashboard-header strong {
    color: #52d273;
    font-size: 0.78rem;
}

.v5-m365-dashboard-header i {
    margin-right: 0.35rem;
    font-size: 0.5rem;
}

.v5-m365-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.v5-m365-dashboard-stat,
.v5-m365-dashboard-service {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.v5-m365-dashboard-stat span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
}

.v5-m365-dashboard-stat strong {
    display: block;
    margin-top: 1.2rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.7rem;
}

.v5-m365-dashboard-service {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.v5-m365-dashboard-service i {
    width: 2.7rem;
    height: 2.7rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.12);
    color: var(--orange);
}

.v5-m365-dashboard-service div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.v5-m365-dashboard-service strong {
    color: #ffffff;
}

.v5-m365-dashboard-service span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.78rem;
}

.v5-m365-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.v5-m365-process-grid article {
    min-height: 20rem;
    padding: 1.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-m365-process-grid article:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-m365-process-grid article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-m365-process-grid h3 {
    margin: 5rem 0 1rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.v5-m365-process-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-m365-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-m365-final-cta h2 {
    color: #080809;
}

.v5-m365-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-m365-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1050px) {
    .v5-m365-intro-grid,
    .v5-m365-section-heading,
    .v5-m365-platform-grid,
    .v5-m365-faq-grid,
    .v5-m365-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .v5-m365-service-grid,
    .v5-m365-management-grid,
    .v5-m365-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-m365-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-m365-process-grid article {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .v5-m365-final-actions {
        max-width: 31rem;
    }
}

@media (max-width: 680px) {
    .v5-m365-service-grid,
    .v5-m365-management-grid,
    .v5-m365-benefit-grid,
    .v5-m365-process-grid,
    .v5-m365-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .v5-m365-dashboard-service {
        grid-column: auto;
    }
}

/* =========================================================
   V5 VOIP AND CONTACT CENTRE PAGE
   ========================================================= */

.v5-voip-intro,
.v5-voip-services,
.v5-voip-contact-centre,
.v5-voip-devices,
.v5-voip-benefits,
.v5-voip-process,
.v5-voip-faq {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.v5-voip-intro,
.v5-voip-contact-centre,
.v5-voip-benefits,
.v5-voip-faq {
    background: #080809;
}

.v5-voip-services,
.v5-voip-devices,
.v5-voip-process {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.09),
            transparent 25%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-voip-intro-grid,
.v5-voip-section-heading,
.v5-voip-contact-centre-grid,
.v5-voip-faq-grid,
.v5-voip-final-cta-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-voip-section-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-voip-intro h2,
.v5-voip-section-heading h2,
.v5-voip-contact-centre h2,
.v5-voip-faq h2,
.v5-voip-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-voip-intro h2 span,
.v5-voip-section-heading h2 span,
.v5-voip-contact-centre h2 span,
.v5-voip-faq h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-voip-intro-copy,
.v5-voip-section-heading > p,
.v5-voip-contact-centre-copy > p {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-voip-section-heading > p {
    max-width: 31rem;
    margin: 0;
}

.v5-voip-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.v5-voip-badges span {
    padding: 0.65rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.v5-voip-badges i {
    color: var(--orange);
}

.v5-voip-service-grid,
.v5-voip-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-voip-service-card,
.v5-voip-benefit-grid article {
    min-height: 26rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 200ms ease,
        background 200ms ease,
        border-color 200ms ease;
}

.v5-voip-service-card:hover,
.v5-voip-benefit-grid article:hover {
    transform: translateY(-0.3rem);
    background: rgba(255, 106, 0, 0.07);
    border-color: rgba(255, 106, 0, 0.5);
}

.v5-voip-service-card > span {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-voip-service-card > i,
.v5-voip-benefit-grid i {
    margin-top: 2.5rem;
    color: var(--orange);
    font-size: 1.8rem;
}

.v5-voip-service-card h3,
.v5-voip-benefit-grid h3,
.v5-voip-device-grid h3 {
    margin: auto 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.9rem;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.v5-voip-service-card p,
.v5-voip-benefit-grid p,
.v5-voip-device-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-voip-service-card ul {
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
}

.v5-voip-service-card li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.3rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.v5-voip-service-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--orange);
}

.v5-voip-contact-centre-grid {
    align-items: center;
}

.v5-voip-contact-centre-list {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
}

.v5-voip-contact-centre-list > div {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-voip-contact-centre-list i {
    width: 2.5rem;
    color: var(--orange);
    font-size: 1.2rem;
}

.v5-voip-contact-centre-list span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.v5-voip-contact-centre-list strong {
    color: #fff;
}

.v5-voip-contact-centre-list small {
    color: rgba(255, 255, 255, 0.45);
}

.v5-voip-dashboard {
    padding: 1.5rem;
    background: #0e1013;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.42);
}

.v5-voip-dashboard-header {
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.62);
}

.v5-voip-dashboard-header strong {
    color: #52d273;
    font-size: 0.78rem;
}

.v5-voip-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.v5-voip-dashboard-stat,
.v5-voip-waveform,
.v5-voip-dashboard-feed {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.v5-voip-dashboard-stat span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
}

.v5-voip-dashboard-stat strong {
    display: block;
    margin-top: 1.2rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.v5-voip-waveform,
.v5-voip-dashboard-feed {
    grid-column: 1 / -1;
}

.v5-voip-waveform {
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.v5-voip-waveform span {
    width: 0.45rem;
    border-radius: 999px;
    background: var(--orange);
    animation: v5VoipWave 1.1s ease-in-out infinite alternate;
}

.v5-voip-waveform span:nth-child(2n) {
    animation-delay: 120ms;
}

.v5-voip-waveform span:nth-child(3n) {
    animation-delay: 240ms;
}

@keyframes v5VoipWave {
    from {
        height: 18%;
        opacity: 0.45;
    }

    to {
        height: 82%;
        opacity: 1;
    }
}

.v5-voip-dashboard-feed > div {
    padding: 0.85rem 0;
    display: grid;
    grid-template-columns: 5rem 1fr auto;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.v5-voip-dashboard-feed > div:last-child {
    border-bottom: 0;
}

.v5-voip-dashboard-feed span {
    color: var(--orange);
    font-size: 0.75rem;
}

.v5-voip-dashboard-feed p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
}

.v5-voip-dashboard-feed strong {
    color: #52d273;
    font-size: 0.75rem;
}

.v5-voip-device-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.v5-voip-device-grid article {
    min-height: 20rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-voip-device-grid article:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-voip-device-grid i {
    color: var(--orange);
    font-size: 1.8rem;
}

.v5-voip-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.v5-voip-process-grid article {
    min-height: 20rem;
    padding: 1.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-voip-process-grid article:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-voip-process-grid article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-voip-process-grid h3 {
    margin: 5rem 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.v5-voip-process-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-voip-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-voip-final-cta h2 {
    color: #080809;
}

.v5-voip-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-voip-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1050px) {
    .v5-voip-intro-grid,
    .v5-voip-section-heading,
    .v5-voip-contact-centre-grid,
    .v5-voip-faq-grid,
    .v5-voip-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .v5-voip-service-grid,
    .v5-voip-benefit-grid,
    .v5-voip-device-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-voip-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-voip-device-grid article,
    .v5-voip-process-grid article {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .v5-voip-final-actions {
        max-width: 31rem;
    }
}

@media (max-width: 680px) {
    .v5-voip-service-grid,
    .v5-voip-benefit-grid,
    .v5-voip-device-grid,
    .v5-voip-process-grid,
    .v5-voip-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .v5-voip-waveform,
    .v5-voip-dashboard-feed {
        grid-column: auto;
    }

    .v5-voip-dashboard-feed > div {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v5-voip-waveform span {
        animation: none;
        height: 50%;
    }
}

/* =========================================================
   V5 NETWORK DESIGN PAGE
   ========================================================= */

.v5-network-intro,
.v5-network-services,
.v5-network-architecture,
.v5-network-audit,
.v5-network-process,
.v5-network-benefits,
.v5-network-faq {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.v5-network-intro,
.v5-network-architecture,
.v5-network-benefits,
.v5-network-faq {
    background: #080809;
}

.v5-network-services,
.v5-network-audit,
.v5-network-process {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.09),
            transparent 25%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-network-intro-grid,
.v5-network-section-heading,
.v5-network-architecture-grid,
.v5-network-faq-grid,
.v5-network-final-cta-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-network-section-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-network-intro h2,
.v5-network-section-heading h2,
.v5-network-architecture h2,
.v5-network-faq h2,
.v5-network-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-network-intro h2 span,
.v5-network-section-heading h2 span,
.v5-network-architecture h2 span,
.v5-network-faq h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-network-intro-copy,
.v5-network-section-heading > p,
.v5-network-architecture-copy > p {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-network-section-heading > p {
    max-width: 31rem;
    margin: 0;
}

.v5-network-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.v5-network-badges span {
    padding: 0.65rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.v5-network-badges i {
    color: var(--orange);
}

.v5-network-service-grid,
.v5-network-audit-grid,
.v5-network-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-network-service-card,
.v5-network-audit-grid article,
.v5-network-benefit-grid article {
    min-height: 25rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 200ms ease,
        background 200ms ease,
        border-color 200ms ease;
}

.v5-network-service-card:hover,
.v5-network-audit-grid article:hover,
.v5-network-benefit-grid article:hover {
    transform: translateY(-0.3rem);
    background: rgba(255, 106, 0, 0.07);
    border-color: rgba(255, 106, 0, 0.5);
}

.v5-network-service-card > span {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-network-service-card > i,
.v5-network-audit-grid i,
.v5-network-benefit-grid i {
    margin-top: 2.5rem;
    color: var(--orange);
    font-size: 1.8rem;
}

.v5-network-service-card h3,
.v5-network-audit-grid h3,
.v5-network-benefit-grid h3 {
    margin: auto 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.9rem;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.v5-network-service-card p,
.v5-network-audit-grid p,
.v5-network-benefit-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-network-service-card ul {
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
}

.v5-network-service-card li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.3rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.v5-network-service-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--orange);
}

.v5-network-architecture-grid {
    align-items: center;
}

.v5-network-architecture-list {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
}

.v5-network-architecture-list > div {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-network-architecture-list i {
    width: 2.5rem;
    color: var(--orange);
    font-size: 1.2rem;
}

.v5-network-architecture-list span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.v5-network-architecture-list strong {
    color: #fff;
}

.v5-network-architecture-list small {
    color: rgba(255, 255, 255, 0.45);
}

.v5-network-map {
    position: relative;
    min-height: 31rem;
    background:
        linear-gradient(
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        ),
        #0e1013;
    background-size: 3rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.v5-network-map-node {
    position: absolute;
    z-index: 2;
    width: 6.5rem;
    height: 6.5rem;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0.4rem;
    border-radius: 50%;
    background: #16181d;
    border: 1px solid rgba(255, 106, 0, 0.55);
    color: #fff;
    box-shadow: 0 0 2rem rgba(255, 106, 0, 0.12);
}

.v5-network-map-node i {
    color: var(--orange);
}

.v5-network-map-node span {
    font-size: 0.75rem;
}

.v5-network-map-core {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.v5-network-map-firewall {
    left: 10%;
    top: 18%;
}

.v5-network-map-users {
    right: 10%;
    top: 15%;
}

.v5-network-map-cloud {
    left: 12%;
    bottom: 12%;
}

.v5-network-map-wifi {
    right: 10%;
    bottom: 12%;
}

.v5-network-map-line {
    position: absolute;
    z-index: 1;
    height: 1px;
    background: rgba(255, 106, 0, 0.5);
    transform-origin: left center;
}

.line-one {
    left: 24%;
    top: 30%;
    width: 29%;
    transform: rotate(28deg);
}

.line-two {
    left: 50%;
    top: 48%;
    width: 31%;
    transform: rotate(-31deg);
}

.line-three {
    left: 23%;
    top: 70%;
    width: 31%;
    transform: rotate(-26deg);
}

.line-four {
    left: 50%;
    top: 51%;
    width: 31%;
    transform: rotate(29deg);
}

.v5-network-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.v5-network-process-grid article {
    min-height: 20rem;
    padding: 1.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-network-process-grid article:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-network-process-grid article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-network-process-grid h3 {
    margin: 5rem 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.v5-network-process-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-network-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-network-final-cta h2 {
    color: #080809;
}

.v5-network-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-network-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1050px) {
    .v5-network-intro-grid,
    .v5-network-section-heading,
    .v5-network-architecture-grid,
    .v5-network-faq-grid,
    .v5-network-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .v5-network-service-grid,
    .v5-network-audit-grid,
    .v5-network-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-network-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-network-process-grid article {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .v5-network-final-actions {
        max-width: 31rem;
    }
}

@media (max-width: 680px) {
    .v5-network-service-grid,
    .v5-network-audit-grid,
    .v5-network-benefit-grid,
    .v5-network-process-grid {
        grid-template-columns: 1fr;
    }

    .v5-network-map {
        min-height: 25rem;
        transform: scale(0.9);
    }

    .v5-network-map-node {
        width: 5rem;
        height: 5rem;
    }
}

/* =========================================================
   V5 IT HARDWARE SUPPLY PAGE
   ========================================================= */

.v5-hardware-intro,
.v5-hardware-categories,
.v5-hardware-procurement,
.v5-hardware-brands,
.v5-hardware-services,
.v5-hardware-warranty,
.v5-hardware-process,
.v5-hardware-faq {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.v5-hardware-intro,
.v5-hardware-procurement,
.v5-hardware-services,
.v5-hardware-faq {
    background: #080809;
}

.v5-hardware-categories,
.v5-hardware-brands,
.v5-hardware-warranty,
.v5-hardware-process {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.09),
            transparent 25%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-hardware-intro-grid,
.v5-hardware-section-heading,
.v5-hardware-procurement-grid,
.v5-hardware-warranty-grid,
.v5-hardware-faq-grid,
.v5-hardware-final-cta-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-hardware-section-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-hardware-intro h2,
.v5-hardware-section-heading h2,
.v5-hardware-procurement h2,
.v5-hardware-warranty h2,
.v5-hardware-faq h2,
.v5-hardware-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-hardware-intro h2 span,
.v5-hardware-section-heading h2 span,
.v5-hardware-procurement h2 span,
.v5-hardware-warranty h2 span,
.v5-hardware-faq h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-hardware-intro-copy,
.v5-hardware-section-heading > p,
.v5-hardware-procurement-copy > p {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-hardware-section-heading > p {
    max-width: 31rem;
    margin: 0;
}

.v5-hardware-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.v5-hardware-badges span {
    padding: 0.65rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.v5-hardware-badges i {
    color: var(--orange);
}

.v5-hardware-category-grid,
.v5-hardware-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-hardware-category,
.v5-hardware-service-grid article {
    min-height: 25rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 200ms ease,
        background 200ms ease,
        border-color 200ms ease;
}

.v5-hardware-category:hover,
.v5-hardware-service-grid article:hover {
    transform: translateY(-0.3rem);
    background: rgba(255, 106, 0, 0.07);
    border-color: rgba(255, 106, 0, 0.5);
}

.v5-hardware-category > span {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-hardware-category > i,
.v5-hardware-service-grid i {
    margin-top: 2.5rem;
    color: var(--orange);
    font-size: 1.8rem;
}

.v5-hardware-category h3,
.v5-hardware-service-grid h3 {
    margin: auto 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.9rem;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.v5-hardware-category p,
.v5-hardware-service-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-hardware-category ul {
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
}

.v5-hardware-category li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.3rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.v5-hardware-category li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--orange);
}

.v5-hardware-procurement-grid {
    align-items: center;
}

.v5-hardware-procurement-list {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
}

.v5-hardware-procurement-list > div {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-hardware-procurement-list i {
    width: 2.5rem;
    color: var(--orange);
}

.v5-hardware-procurement-list span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.v5-hardware-procurement-list strong {
    color: #fff;
}

.v5-hardware-procurement-list small {
    color: rgba(255, 255, 255, 0.45);
}

.v5-hardware-order-panel {
    padding: 1.5rem;
    background: #0e1013;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.42);
}

.v5-hardware-order-header {
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.62);
}

.v5-hardware-order-header strong {
    color: var(--orange);
    font-size: 0.78rem;
}

.v5-hardware-order-summary {
    margin-top: 1rem;
}

.v5-hardware-order-summary > div {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.035);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.58);
}

.v5-hardware-order-summary strong {
    color: #fff;
}

.v5-hardware-order-status {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
    margin-top: 1.3rem;
}

.v5-hardware-order-status span {
    padding: 0.7rem 0.3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.68rem;
}

.v5-hardware-order-status .is-complete {
    color: #52d273;
    border-color: rgba(82, 210, 115, 0.4);
}

.v5-hardware-order-status .is-active {
    color: var(--orange);
    border-color: rgba(255, 106, 0, 0.5);
}

.v5-hardware-brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-hardware-brand-grid span {
    min-height: 8rem;
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.56);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
}

.v5-hardware-warranty-list article {
    padding: 1.5rem 0;
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-hardware-warranty-list article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-hardware-warranty-list article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
}

.v5-hardware-warranty-list h3 {
    margin: 0 0 0.6rem;
    color: #fff;
    font-family: var(--font-display);
}

.v5-hardware-warranty-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-hardware-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.v5-hardware-process-grid article {
    min-height: 20rem;
    padding: 1.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-hardware-process-grid article:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-hardware-process-grid article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
}

.v5-hardware-process-grid h3 {
    margin: 5rem 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.v5-hardware-process-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-hardware-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-hardware-final-cta h2 {
    color: #080809;
}

.v5-hardware-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-hardware-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1050px) {
    .v5-hardware-intro-grid,
    .v5-hardware-section-heading,
    .v5-hardware-procurement-grid,
    .v5-hardware-warranty-grid,
    .v5-hardware-faq-grid,
    .v5-hardware-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .v5-hardware-category-grid,
    .v5-hardware-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-hardware-brand-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .v5-hardware-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-hardware-process-grid article {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .v5-hardware-final-actions {
        max-width: 31rem;
    }
}

@media (max-width: 680px) {
    .v5-hardware-category-grid,
    .v5-hardware-service-grid,
    .v5-hardware-process-grid {
        grid-template-columns: 1fr;
    }

    .v5-hardware-brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-hardware-order-status {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================================
   V5 SOFTWARE LICENSING PAGE
   ========================================================= */

.v5-software-intro,
.v5-software-categories,
.v5-software-management,
.v5-software-services,
.v5-software-benefits,
.v5-software-process,
.v5-software-faq {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.v5-software-intro,
.v5-software-management,
.v5-software-benefits,
.v5-software-faq {
    background: #080809;
}

.v5-software-categories,
.v5-software-services,
.v5-software-process {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.09),
            transparent 25%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-software-intro-grid,
.v5-software-section-heading,
.v5-software-management-grid,
.v5-software-faq-grid,
.v5-software-final-cta-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-software-section-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-software-intro h2,
.v5-software-section-heading h2,
.v5-software-management h2,
.v5-software-faq h2,
.v5-software-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-software-intro h2 span,
.v5-software-section-heading h2 span,
.v5-software-management h2 span,
.v5-software-faq h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-software-intro-copy,
.v5-software-section-heading > p,
.v5-software-management-copy > p {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-software-section-heading > p {
    max-width: 31rem;
    margin: 0;
}

.v5-software-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.v5-software-badges span {
    padding: 0.65rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.v5-software-badges i {
    color: var(--orange);
}

.v5-software-category-grid,
.v5-software-service-grid,
.v5-software-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-software-category,
.v5-software-service-grid article,
.v5-software-benefit-grid article {
    min-height: 25rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 200ms ease,
        background 200ms ease,
        border-color 200ms ease;
}

.v5-software-category:hover,
.v5-software-service-grid article:hover,
.v5-software-benefit-grid article:hover {
    transform: translateY(-0.3rem);
    background: rgba(255, 106, 0, 0.07);
    border-color: rgba(255, 106, 0, 0.5);
}

.v5-software-category > span {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-software-category > i,
.v5-software-service-grid i,
.v5-software-benefit-grid i {
    margin-top: 2.5rem;
    color: var(--orange);
    font-size: 1.8rem;
}

.v5-software-category h3,
.v5-software-service-grid h3,
.v5-software-benefit-grid h3 {
    margin: auto 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.9rem;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.v5-software-category p,
.v5-software-service-grid p,
.v5-software-benefit-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-software-category ul {
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
}

.v5-software-category li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.3rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.v5-software-category li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--orange);
}

.v5-software-management-grid {
    align-items: center;
}

.v5-software-management-list {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
}

.v5-software-management-list > div {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-software-management-list i {
    width: 2.5rem;
    color: var(--orange);
}

.v5-software-management-list span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.v5-software-management-list strong {
    color: #fff;
}

.v5-software-management-list small {
    color: rgba(255, 255, 255, 0.45);
}

.v5-software-dashboard {
    padding: 1.5rem;
    background: #0e1013;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.42);
}

.v5-software-dashboard-header {
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.62);
}

.v5-software-dashboard-header strong {
    color: #52d273;
    font-size: 0.78rem;
}

.v5-software-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.v5-software-dashboard-stat,
.v5-software-dashboard-list {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.v5-software-dashboard-stat span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
}

.v5-software-dashboard-stat strong {
    display: block;
    margin-top: 1.2rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.v5-software-dashboard-list {
    grid-column: 1 / -1;
}

.v5-software-dashboard-list > div {
    padding: 0.9rem 0;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.v5-software-dashboard-list > div:last-child {
    border-bottom: 0;
}

.v5-software-dashboard-list span {
    color: rgba(255, 255, 255, 0.65);
}

.v5-software-dashboard-list strong {
    color: #fff;
}

.v5-software-dashboard-list small {
    color: #52d273;
}

.v5-software-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.v5-software-process-grid article {
    min-height: 20rem;
    padding: 1.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-software-process-grid article:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-software-process-grid article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
}

.v5-software-process-grid h3 {
    margin: 5rem 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.v5-software-process-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-software-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-software-final-cta h2 {
    color: #080809;
}

.v5-software-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-software-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1050px) {
    .v5-software-intro-grid,
    .v5-software-section-heading,
    .v5-software-management-grid,
    .v5-software-faq-grid,
    .v5-software-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .v5-software-category-grid,
    .v5-software-service-grid,
    .v5-software-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-software-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-software-process-grid article {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .v5-software-final-actions {
        max-width: 31rem;
    }
}

@media (max-width: 680px) {
    .v5-software-category-grid,
    .v5-software-service-grid,
    .v5-software-benefit-grid,
    .v5-software-process-grid,
    .v5-software-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .v5-software-dashboard-list {
        grid-column: auto;
    }

    .v5-software-dashboard-list > div {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
}

/* =========================================================
   V5 ABOUT PAGE
   ========================================================= */

.v5-about-intro,
.v5-about-stats,
.v5-about-mission,
.v5-about-capabilities,
.v5-about-teams,
.v5-about-values,
.v5-about-credentials,
.v5-about-clients {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.v5-about-intro,
.v5-about-capabilities,
.v5-about-values,
.v5-about-clients {
    background: #080809;
}

.v5-about-stats,
.v5-about-mission,
.v5-about-teams,
.v5-about-credentials {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.09),
            transparent 25%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-about-intro-grid,
.v5-about-section-heading,
.v5-about-credentials-grid,
.v5-about-final-cta-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-about-section-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-about-intro h2,
.v5-about-section-heading h2,
.v5-about-credentials h2,
.v5-about-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-about-intro h2 span,
.v5-about-section-heading h2 span,
.v5-about-credentials h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-about-intro-copy,
.v5-about-section-heading > p,
.v5-about-credentials-grid > div > p {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-about-section-heading > p {
    max-width: 31rem;
    margin: 0;
}

.v5-about-stat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-about-stat-grid article {
    min-height: 13rem;
    padding: 1.7rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-about-stat-grid strong {
    color: var(--orange);
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    letter-spacing: -0.07em;
}

.v5-about-stat-grid span {
    color: rgba(255, 255, 255, 0.55);
}

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

.v5-about-mission-card {
    min-height: 35rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-about-mission-card > span {
    color: rgba(255, 255, 255, 0.28);
    font-weight: 900;
}

.v5-about-mission-card .concept-kicker {
    margin-top: auto;
}

.v5-about-mission-card h2 {
    max-width: 14ch;
    margin: 1rem 0 1.5rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.v5-about-mission-card p:last-child {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

.v5-about-capability-grid,
.v5-about-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-about-capability-grid a,
.v5-about-value-grid article {
    min-height: 24rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 200ms ease,
        background 200ms ease,
        border-color 200ms ease;
}

.v5-about-capability-grid a:hover,
.v5-about-value-grid article:hover {
    transform: translateY(-0.3rem);
    background: rgba(255, 106, 0, 0.07);
    border-color: rgba(255, 106, 0, 0.5);
}

.v5-about-capability-grid a > span,
.v5-about-value-grid article > span {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-about-capability-grid i {
    margin-top: 2.5rem;
    color: var(--orange);
    font-size: 1.8rem;
}

.v5-about-capability-grid h3,
.v5-about-value-grid h3 {
    margin: auto 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.9rem;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.v5-about-capability-grid p,
.v5-about-value-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.v5-about-team-card {
    min-height: 28rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.015)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-about-team-icon {
    width: 4rem;
    height: 4rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.5);
    color: var(--orange);
    font-size: 1.4rem;
}

.v5-about-team-card > span {
    margin-top: auto;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.v5-about-team-card h3 {
    margin: 1rem 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: -0.05em;
}

.v5-about-team-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-about-credential-list {
    margin: 0;
}

.v5-about-credential-list > div {
    padding: 1.2rem 0;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-about-credential-list > div:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-about-credential-list dt {
    color: rgba(255, 255, 255, 0.4);
}

.v5-about-credential-list dd {
    margin: 0;
    color: #fff;
}

.v5-about-client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-about-client-grid span {
    min-height: 8rem;
    padding: 1rem;
    display: grid;
    place-items: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.58);
    font-family: var(--font-display);
    font-weight: 800;
}

.v5-about-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-about-final-cta h2 {
    color: #080809;
}

.v5-about-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-about-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1050px) {
    .v5-about-intro-grid,
    .v5-about-section-heading,
    .v5-about-credentials-grid,
    .v5-about-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .v5-about-stat-grid,
    .v5-about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-about-capability-grid,
    .v5-about-value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-about-client-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .v5-about-final-actions {
        max-width: 31rem;
    }
}

@media (max-width: 680px) {
    .v5-about-stat-grid,
    .v5-about-mission-grid,
    .v5-about-team-grid,
    .v5-about-capability-grid,
    .v5-about-value-grid {
        grid-template-columns: 1fr;
    }

    .v5-about-client-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-about-credential-list > div {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
}

/* =========================================================
   V5 CAREERS PAGE
   ========================================================= */

.v5-careers-intro,
.v5-careers-culture,
.v5-careers-teams,
.v5-careers-opportunities,
.v5-careers-expectations,
.v5-careers-process,
.v5-careers-application,
.v5-careers-faq {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.v5-careers-intro,
.v5-careers-teams,
.v5-careers-expectations,
.v5-careers-application {
    background: #080809;
}

.v5-careers-culture,
.v5-careers-opportunities,
.v5-careers-process,
.v5-careers-faq {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.09),
            transparent 25%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-careers-intro-grid,
.v5-careers-section-heading,
.v5-careers-expectations-grid,
.v5-careers-application-grid,
.v5-careers-faq-grid,
.v5-careers-final-cta-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-careers-section-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-careers-intro h2,
.v5-careers-section-heading h2,
.v5-careers-expectations h2,
.v5-careers-application h2,
.v5-careers-faq h2,
.v5-careers-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-careers-intro h2 span,
.v5-careers-section-heading h2 span,
.v5-careers-expectations h2 span,
.v5-careers-application h2 span,
.v5-careers-faq h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-careers-intro-copy,
.v5-careers-section-heading > p,
.v5-careers-expectations-grid > div > p,
.v5-careers-application-grid > div > p {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-careers-section-heading > p {
    max-width: 31rem;
    margin: 0;
}

.v5-careers-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.v5-careers-badges span {
    padding: 0.65rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.v5-careers-badges i {
    color: var(--orange);
}

.v5-careers-culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-careers-culture-grid article {
    min-height: 24rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 200ms ease,
        background 200ms ease,
        border-color 200ms ease;
}

.v5-careers-culture-grid article:hover {
    transform: translateY(-0.3rem);
    background: rgba(255, 106, 0, 0.07);
    border-color: rgba(255, 106, 0, 0.5);
}

.v5-careers-culture-grid article > span {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-careers-culture-grid i {
    margin-top: 2.5rem;
    color: var(--orange);
    font-size: 1.8rem;
}

.v5-careers-culture-grid h3 {
    margin: auto 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.9rem;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.v5-careers-culture-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-careers-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.v5-careers-team-card {
    min-height: 35rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        transform 200ms ease,
        border-color 200ms ease;
}

.v5-careers-team-card:hover {
    transform: translateY(-0.35rem);
    border-color: rgba(255, 106, 0, 0.5);
}

.v5-careers-team-icon {
    width: 4rem;
    height: 4rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.5);
    color: var(--orange);
    font-size: 1.4rem;
}

.v5-careers-team-card > span {
    margin-top: 3rem;
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.v5-careers-team-card h3 {
    margin: 1rem 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: -0.05em;
}

.v5-careers-team-card p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-careers-team-card ul {
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.v5-careers-team-card li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.3rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.84rem;
}

.v5-careers-team-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--orange);
}

.v5-careers-role-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.v5-careers-role {
    min-height: 34rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-careers-role > div > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.v5-careers-role h3 {
    margin: 1rem 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: -0.055em;
}

.v5-careers-role p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-careers-role ul {
    margin: 1.5rem 0 2rem;
    padding: 0;
    list-style: none;
}

.v5-careers-role li {
    position: relative;
    padding: 0.6rem 0 0.6rem 1.7rem;
    color: rgba(255, 255, 255, 0.62);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.v5-careers-role li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 900;
}

.v5-careers-role > a {
    min-height: 4rem;
    margin-top: auto;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--orange);
    color: #080809;
    font-weight: 800;
}

.v5-careers-availability-note {
    margin-top: 1rem;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 106, 0, 0.06);
    border: 1px solid rgba(255, 106, 0, 0.32);
}

.v5-careers-availability-note > i {
    color: var(--orange);
    font-size: 1.5rem;
}

.v5-careers-availability-note strong {
    color: #fff;
}

.v5-careers-availability-note p {
    margin: 0.4rem 0 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.v5-careers-availability-note > a {
    color: var(--orange);
    font-weight: 800;
    white-space: nowrap;
}

.v5-careers-expectations-list article {
    padding: 1.5rem 0;
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-careers-expectations-list article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-careers-expectations-list article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
}

.v5-careers-expectations-list h3 {
    margin: 0 0 0.6rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.v5-careers-expectations-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-careers-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.v5-careers-process-grid article {
    min-height: 20rem;
    padding: 1.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-careers-process-grid article:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-careers-process-grid article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
}

.v5-careers-process-grid h3 {
    margin: 5rem 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.v5-careers-process-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-careers-application-panel {
    padding: 2rem;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-careers-application-panel h3 {
    margin: 0 0 1.5rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 2rem;
}

.v5-careers-application-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.v5-careers-application-panel li {
    position: relative;
    padding: 0.75rem 0 0.75rem 1.7rem;
    color: rgba(255, 255, 255, 0.62);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.v5-careers-application-panel li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
}

.v5-careers-application-contact {
    margin-top: 2rem;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: rgba(255, 106, 0, 0.08);
    border: 1px solid rgba(255, 106, 0, 0.3);
}

.v5-careers-application-contact span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
}

.v5-careers-application-contact a {
    color: var(--orange);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
}

.v5-careers-application-panel > p {
    margin: 1.5rem 0 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
    line-height: 1.6;
}

.v5-careers-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-careers-final-cta h2 {
    color: #080809;
}

.v5-careers-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-careers-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1100px) {
    .v5-careers-intro-grid,
    .v5-careers-section-heading,
    .v5-careers-expectations-grid,
    .v5-careers-application-grid,
    .v5-careers-faq-grid,
    .v5-careers-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .v5-careers-culture-grid,
    .v5-careers-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-careers-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-careers-process-grid article {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .v5-careers-final-actions {
        max-width: 31rem;
    }
}

@media (max-width: 700px) {
    .v5-careers-culture-grid,
    .v5-careers-team-grid,
    .v5-careers-role-grid,
    .v5-careers-process-grid {
        grid-template-columns: 1fr;
    }

    .v5-careers-team-card {
        min-height: auto;
    }

    .v5-careers-availability-note {
        grid-template-columns: 1fr;
    }

    .v5-careers-availability-note > a {
        white-space: normal;
    }
}

/* =========================================================
   V5 PARTNERS PAGE
   ========================================================= */

.v5-partners-intro,
.v5-partners-ecosystem,
.v5-partners-categories,
.v5-partners-value,
.v5-partners-solutions,
.v5-partners-programme,
.v5-partners-process,
.v5-partners-faq {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.v5-partners-intro,
.v5-partners-categories,
.v5-partners-solutions,
.v5-partners-faq {
    background: #080809;
}

.v5-partners-ecosystem,
.v5-partners-value,
.v5-partners-programme,
.v5-partners-process {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.09),
            transparent 25%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-partners-intro-grid,
.v5-partners-section-heading,
.v5-partners-value-grid,
.v5-partners-faq-grid,
.v5-partners-final-cta-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-partners-section-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-partners-intro h2,
.v5-partners-section-heading h2,
.v5-partners-value h2,
.v5-partners-faq h2,
.v5-partners-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-partners-intro h2 span,
.v5-partners-section-heading h2 span,
.v5-partners-value h2 span,
.v5-partners-faq h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-partners-intro-copy,
.v5-partners-section-heading > p,
.v5-partners-value-copy > p {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-partners-section-heading > p {
    max-width: 31rem;
    margin: 0;
}

.v5-partners-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.v5-partners-badges span {
    padding: 0.65rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.v5-partners-badges i {
    color: var(--orange);
}

.v5-partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-partners-logo-grid > div {
    min-height: 9rem;
    padding: 1rem;
    display: grid;
    place-items: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        background 200ms ease,
        border-color 200ms ease;
}

.v5-partners-logo-grid > div:hover {
    background: rgba(255, 106, 0, 0.07);
    border-color: rgba(255, 106, 0, 0.45);
}

.v5-partners-logo-grid span {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-display);
    font-weight: 800;
}

.v5-partners-category-grid,
.v5-partners-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-partners-category,
.v5-partners-solution-grid article {
    min-height: 25rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 200ms ease,
        background 200ms ease,
        border-color 200ms ease;
}

.v5-partners-category:hover,
.v5-partners-solution-grid article:hover {
    transform: translateY(-0.3rem);
    background: rgba(255, 106, 0, 0.07);
    border-color: rgba(255, 106, 0, 0.5);
}

.v5-partners-category > span {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-partners-category > i,
.v5-partners-solution-grid i {
    margin-top: 2.5rem;
    color: var(--orange);
    font-size: 1.8rem;
}

.v5-partners-category h3,
.v5-partners-solution-grid h3 {
    margin: auto 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.9rem;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.v5-partners-category p,
.v5-partners-solution-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-partners-category ul {
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
}

.v5-partners-category li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.3rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.v5-partners-category li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--orange);
}

.v5-partners-value-grid {
    align-items: center;
}

.v5-partners-value-list {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
}

.v5-partners-value-list > div {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-partners-value-list i {
    width: 2.5rem;
    color: var(--orange);
}

.v5-partners-value-list span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.v5-partners-value-list strong {
    color: #fff;
}

.v5-partners-value-list small {
    color: rgba(255, 255, 255, 0.45);
}

.v5-partners-network {
    position: relative;
    min-height: 33rem;
    overflow: hidden;
    background:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        #0e1013;
    background-size: 3rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.v5-partners-network-centre,
.v5-partners-network-node {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    background: #17191e;
    border: 1px solid rgba(255, 106, 0, 0.5);
    box-shadow: 0 0 2rem rgba(255, 106, 0, 0.1);
}

.v5-partners-network-centre {
    left: 50%;
    top: 50%;
    width: 12rem;
    height: 8rem;
    padding: 1rem;
    transform: translate(-50%, -50%);
}

.v5-partners-network-centre img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.v5-partners-network-node {
    width: 6.5rem;
    height: 6.5rem;
    align-content: center;
    gap: 0.35rem;
    border-radius: 50%;
    color: #fff;
}

.v5-partners-network-node i {
    color: var(--orange);
}

.v5-partners-network-node span {
    font-size: 0.72rem;
}

.node-cloud {
    left: 8%;
    top: 12%;
}

.node-security {
    right: 8%;
    top: 12%;
}

.node-hardware {
    left: 5%;
    bottom: 12%;
}

.node-network {
    right: 5%;
    bottom: 12%;
}

.node-software {
    left: 50%;
    bottom: 4%;
    transform: translateX(-50%);
}

.v5-partners-connection {
    position: absolute;
    z-index: 1;
    height: 1px;
    background: rgba(255, 106, 0, 0.48);
    transform-origin: left center;
}

.connection-one {
    left: 21%;
    top: 27%;
    width: 32%;
    transform: rotate(24deg);
}

.connection-two {
    left: 50%;
    top: 48%;
    width: 31%;
    transform: rotate(-27deg);
}

.connection-three {
    left: 18%;
    top: 73%;
    width: 35%;
    transform: rotate(-25deg);
}

.connection-four {
    left: 50%;
    top: 52%;
    width: 34%;
    transform: rotate(26deg);
}

.connection-five {
    left: 50%;
    top: 58%;
    width: 17%;
    transform: rotate(90deg);
}

.v5-partners-programme-grid,
.v5-partners-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.v5-partners-programme-grid article,
.v5-partners-process-grid article {
    min-height: 21rem;
    padding: 1.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-partners-programme-grid article:first-child,
.v5-partners-process-grid article:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-partners-programme-grid article > span,
.v5-partners-process-grid article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
}

.v5-partners-programme-grid h3,
.v5-partners-process-grid h3 {
    margin: 5rem 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.75rem;
}

.v5-partners-programme-grid p,
.v5-partners-process-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-partners-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-partners-final-cta h2 {
    color: #080809;
}

.v5-partners-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-partners-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1100px) {
    .v5-partners-intro-grid,
    .v5-partners-section-heading,
    .v5-partners-value-grid,
    .v5-partners-faq-grid,
    .v5-partners-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .v5-partners-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .v5-partners-category-grid,
    .v5-partners-solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-partners-programme-grid,
    .v5-partners-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-partners-programme-grid article,
    .v5-partners-process-grid article {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .v5-partners-final-actions {
        max-width: 31rem;
    }
}

@media (max-width: 700px) {
    .v5-partners-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-partners-category-grid,
    .v5-partners-solution-grid,
    .v5-partners-programme-grid,
    .v5-partners-process-grid {
        grid-template-columns: 1fr;
    }

    .v5-partners-network {
        min-height: 27rem;
    }

    .v5-partners-network-centre {
        width: 9rem;
        height: 6rem;
    }

    .v5-partners-network-node {
        width: 4.8rem;
        height: 4.8rem;
    }

    .v5-partners-network-node span {
        font-size: 0.62rem;
    }
}

/* =========================================================
   V5 CLIENTS PAGE
   ========================================================= */

.v5-clients-intro,
.v5-clients-logos,
.v5-clients-sectors,
.v5-clients-delivery,
.v5-clients-services,
.v5-clients-testimonials,
.v5-clients-process,
.v5-clients-faq {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.v5-clients-intro,
.v5-clients-sectors,
.v5-clients-services,
.v5-clients-faq {
    background: #080809;
}

.v5-clients-logos,
.v5-clients-delivery,
.v5-clients-testimonials,
.v5-clients-process {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.09),
            transparent 25%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-clients-intro-grid,
.v5-clients-section-heading,
.v5-clients-delivery-grid,
.v5-clients-faq-grid,
.v5-clients-final-cta-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-clients-section-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-clients-intro h2,
.v5-clients-section-heading h2,
.v5-clients-delivery h2,
.v5-clients-faq h2,
.v5-clients-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-clients-intro h2 span,
.v5-clients-section-heading h2 span,
.v5-clients-delivery h2 span,
.v5-clients-faq h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-clients-intro-copy,
.v5-clients-section-heading > p,
.v5-clients-delivery-copy > p {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-clients-section-heading > p {
    max-width: 31rem;
    margin: 0;
}

.v5-clients-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.v5-clients-badges span {
    padding: 0.65rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.v5-clients-badges i {
    color: var(--orange);
}

.v5-clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-clients-logo-grid > div {
    min-height: 10rem;
    padding: 1.5rem;
    display: grid;
    place-items: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        background 200ms ease,
        border-color 200ms ease;
}

.v5-clients-logo-grid > div:hover {
    background: rgba(255, 106, 0, 0.07);
    border-color: rgba(255, 106, 0, 0.45);
}

.v5-clients-logo-grid img {
    width: 100%;
    max-width: 10rem;
    max-height: 5rem;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.76;
    transition:
        filter 200ms ease,
        opacity 200ms ease,
        transform 200ms ease;
}

.v5-clients-logo-grid > div:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}

.v5-clients-logo-grid span {
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--font-display);
    font-weight: 800;
}

.v5-clients-sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-clients-sector-grid article {
    min-height: 23rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 200ms ease,
        background 200ms ease,
        border-color 200ms ease;
}

.v5-clients-sector-grid article:hover {
    transform: translateY(-0.3rem);
    background: rgba(255, 106, 0, 0.07);
    border-color: rgba(255, 106, 0, 0.5);
}

.v5-clients-sector-grid article > span {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.7rem;
    font-weight: 900;
}

.v5-clients-sector-grid i {
    margin-top: 2.5rem;
    color: var(--orange);
    font-size: 1.8rem;
}

.v5-clients-sector-grid h3 {
    margin: auto 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1.05;
}

.v5-clients-sector-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-clients-delivery-grid {
    align-items: center;
}

.v5-clients-delivery-list {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
}

.v5-clients-delivery-list > div {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-clients-delivery-list i {
    width: 2.5rem;
    color: var(--orange);
}

.v5-clients-delivery-list span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.v5-clients-delivery-list strong {
    color: #fff;
}

.v5-clients-delivery-list small {
    color: rgba(255, 255, 255, 0.45);
}

.v5-clients-delivery-panel {
    padding: 1.5rem;
    background: #0e1013;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.42);
}

.v5-clients-delivery-header {
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.62);
}

.v5-clients-delivery-header strong {
    color: #52d273;
    font-size: 0.78rem;
}

.v5-clients-delivery-services {
    margin-top: 1rem;
}

.v5-clients-delivery-services > div {
    padding: 1rem;
    display: grid;
    grid-template-columns: 2rem 1fr auto;
    gap: 1rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.035);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.v5-clients-delivery-services i {
    color: var(--orange);
}

.v5-clients-delivery-services span {
    color: rgba(255, 255, 255, 0.65);
}

.v5-clients-delivery-services strong {
    color: #52d273;
    font-size: 0.75rem;
}

.v5-clients-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-clients-service-grid a {
    min-height: 22rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 200ms ease,
        background 200ms ease,
        border-color 200ms ease;
}

.v5-clients-service-grid a:hover {
    transform: translateY(-0.3rem);
    background: rgba(255, 106, 0, 0.07);
    border-color: rgba(255, 106, 0, 0.5);
}

.v5-clients-service-grid i {
    color: var(--orange);
    font-size: 1.8rem;
}

.v5-clients-service-grid h3 {
    margin: auto 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.9rem;
}

.v5-clients-service-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-clients-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.v5-clients-testimonial-grid article {
    min-height: 25rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-clients-stars {
    color: var(--orange);
    letter-spacing: 0.12em;
}

.v5-clients-testimonial-grid blockquote {
    margin: auto 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.55rem;
    line-height: 1.35;
}

.v5-clients-testimonial-grid footer {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.v5-clients-testimonial-grid footer strong {
    color: #fff;
}

.v5-clients-testimonial-grid footer span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.8rem;
}

.v5-clients-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.v5-clients-process-grid article {
    min-height: 20rem;
    padding: 1.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-clients-process-grid article:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-clients-process-grid article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
}

.v5-clients-process-grid h3 {
    margin: 5rem 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.v5-clients-process-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-clients-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-clients-final-cta h2 {
    color: #080809;
}

.v5-clients-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-clients-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1100px) {
    .v5-clients-intro-grid,
    .v5-clients-section-heading,
    .v5-clients-delivery-grid,
    .v5-clients-faq-grid,
    .v5-clients-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .v5-clients-logo-grid,
    .v5-clients-sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-clients-service-grid,
    .v5-clients-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-clients-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-clients-process-grid article {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .v5-clients-final-actions {
        max-width: 31rem;
    }
}

@media (max-width: 700px) {
    .v5-clients-logo-grid,
    .v5-clients-sector-grid,
    .v5-clients-service-grid,
    .v5-clients-testimonial-grid,
    .v5-clients-process-grid {
        grid-template-columns: 1fr;
    }

    .v5-clients-delivery-services > div {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
}

/* =========================================================
   V5 CASE STUDIES PAGE
   ========================================================= */

.v5-cases-intro,
.v5-cases-featured,
.v5-cases-grid-section,
.v5-cases-results,
.v5-cases-method,
.v5-cases-sectors,
.v5-cases-faq {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.v5-cases-intro,
.v5-cases-grid-section,
.v5-cases-method,
.v5-cases-faq {
    background: #080809;
}

.v5-cases-featured,
.v5-cases-results,
.v5-cases-sectors {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.09),
            transparent 25%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-cases-intro-grid,
.v5-cases-section-heading,
.v5-cases-method-grid,
.v5-cases-faq-grid,
.v5-cases-final-cta-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-cases-section-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-cases-intro h2,
.v5-cases-section-heading h2,
.v5-cases-method h2,
.v5-cases-faq h2,
.v5-cases-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-cases-intro h2 span,
.v5-cases-section-heading h2 span,
.v5-cases-method h2 span,
.v5-cases-faq h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-cases-intro-copy,
.v5-cases-section-heading > p,
.v5-cases-method-grid > div > p {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-cases-section-heading > p {
    max-width: 31rem;
    margin: 0;
}

.v5-cases-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.v5-cases-badges span {
    padding: 0.65rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.v5-cases-badges i {
    color: var(--orange);
}

.v5-cases-featured-project {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.v5-cases-featured-copy {
    padding: clamp(2rem, 5vw, 4rem);
}

.v5-cases-project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.v5-cases-project-meta span {
    padding: 0.5rem 0.7rem;
    border: 1px solid rgba(255, 106, 0, 0.35);
    color: var(--orange);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.v5-cases-featured-copy h3 {
    max-width: 12ch;
    margin: 2rem 0 1.4rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-cases-featured-copy > p {
    color: rgba(255, 255, 255, 0.56);
    line-height: 1.8;
}

.v5-cases-project-details {
    margin: 2.5rem 0;
}

.v5-cases-project-details > div {
    padding: 1.1rem 0;
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-cases-project-details > div:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-cases-project-details span {
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.v5-cases-project-details p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.7;
}

.v5-cases-featured-copy > a {
    color: var(--orange);
    font-weight: 800;
}

.v5-cases-crm-visual {
    padding: 1.5rem;
    align-self: stretch;
    background: #0e1013;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-cases-crm-header {
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.62);
}

.v5-cases-crm-header strong {
    color: #52d273;
    font-size: 0.75rem;
}

.v5-cases-crm-header i {
    margin-right: 0.35rem;
    font-size: 0.5rem;
}

.v5-cases-crm-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 1rem;
}

.v5-cases-crm-stats > div {
    padding: 1.1rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.v5-cases-crm-stats span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.68rem;
}

.v5-cases-crm-stats strong {
    display: block;
    margin-top: 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.v5-cases-crm-table {
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.v5-cases-crm-table > div {
    padding: 1rem;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.8fr;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.v5-cases-crm-table > div:first-child {
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
}

.v5-cases-crm-table strong {
    color: #fff;
}

.v5-cases-crm-table span {
    color: rgba(255, 255, 255, 0.5);
}

.v5-cases-crm-table .is-new {
    color: var(--orange);
}

.v5-cases-crm-table .is-progress {
    color: #f2c94c;
}

.v5-cases-crm-table .is-complete {
    color: #52d273;
}

.v5-cases-project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.v5-cases-project {
    min-height: 38rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.015)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        transform 200ms ease,
        border-color 200ms ease;
}

.v5-cases-project:hover {
    transform: translateY(-0.35rem);
    border-color: rgba(255, 106, 0, 0.5);
}

.v5-cases-project-number {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.7rem;
    font-weight: 900;
}

.v5-cases-project-icon {
    width: 4rem;
    height: 4rem;
    margin: 2rem 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.45);
    color: var(--orange);
}

.v5-cases-project > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.v5-cases-project h3 {
    margin: 1rem 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.05;
}

.v5-cases-project p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-cases-project ul {
    margin: 1.5rem 0 2rem;
    padding: 0;
    list-style: none;
}

.v5-cases-project li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.3rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.84rem;
}

.v5-cases-project li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--orange);
}

.v5-cases-project > a {
    margin-top: auto;
    color: var(--orange);
    font-weight: 800;
}

.v5-cases-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-cases-results-grid article {
    min-height: 22rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-cases-results-grid i {
    color: var(--orange);
    font-size: 1.8rem;
}

.v5-cases-results-grid h3 {
    margin: auto 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.v5-cases-results-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-cases-method-list article {
    padding: 1.5rem 0;
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-cases-method-list article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-cases-method-list article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
}

.v5-cases-method-list h3 {
    margin: 0 0 0.5rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.v5-cases-method-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-cases-sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-cases-sector-grid span {
    min-height: 8rem;
    padding: 1rem;
    display: grid;
    place-items: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--font-display);
    font-weight: 800;
}

.v5-cases-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-cases-final-cta h2 {
    color: #080809;
}

.v5-cases-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-cases-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1100px) {
    .v5-cases-intro-grid,
    .v5-cases-section-heading,
    .v5-cases-method-grid,
    .v5-cases-faq-grid,
    .v5-cases-final-cta-inner,
    .v5-cases-featured-project {
        grid-template-columns: 1fr;
    }

    .v5-cases-crm-visual {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .v5-cases-project-grid,
    .v5-cases-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-cases-sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v5-cases-final-actions {
        max-width: 31rem;
    }
}

@media (max-width: 700px) {
    .v5-cases-project-grid,
    .v5-cases-results-grid,
    .v5-cases-sector-grid,
    .v5-cases-crm-stats {
        grid-template-columns: 1fr;
    }

    .v5-cases-project-details > div,
    .v5-cases-crm-table > div {
        grid-template-columns: 1fr;
    }

    .v5-cases-project {
        min-height: auto;
    }
}

/* =========================================================
   V5 CONTACT PAGE
   ========================================================= */

.v5-contact-options,
.v5-contact-form-section,
.v5-contact-details,
.v5-contact-support,
.v5-contact-hours,
.v5-contact-faq {
    position: relative;
    padding: clamp(5rem, 8vw, 8rem) 0;
}

.v5-contact-options,
.v5-contact-details,
.v5-contact-hours {
    background: #080809;
}

.v5-contact-form-section,
.v5-contact-support,
.v5-contact-faq {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.1),
            transparent 26%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-contact-section-heading,
.v5-contact-form-grid,
.v5-contact-support-grid,
.v5-contact-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(3rem, 7vw, 7rem);
}

.v5-contact-section-heading {
    align-items: end;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.v5-contact-section-heading h2,
.v5-contact-form-copy h2,
.v5-contact-support h2,
.v5-contact-faq h2 {
    max-width: 14ch;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2.7rem, 5vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.v5-contact-section-heading h2 span,
.v5-contact-form-copy h2 span,
.v5-contact-support h2 span,
.v5-contact-faq h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.42);
}

.v5-contact-section-heading > p,
.v5-contact-form-copy > p,
.v5-contact-support-grid > div > p {
    max-width: 34rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 1rem;
    line-height: 1.8;
}

/* Contact channel cards */

.v5-contact-option-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-contact-option-grid article {
    position: relative;
    min-width: 0;
    min-height: 25rem;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.012);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        transform 200ms ease,
        background 200ms ease,
        border-color 200ms ease;
}

.v5-contact-option-grid article:hover {
    z-index: 2;
    transform: translateY(-0.35rem);
    background: rgba(255, 106, 0, 0.07);
    border-color: rgba(255, 106, 0, 0.55);
}

.v5-contact-option-grid article > span:first-child {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.v5-contact-option-grid article > i {
    margin-top: 2.5rem;
    color: var(--orange);
    font-size: 1.8rem;
}

.v5-contact-option-grid h3 {
    margin: auto 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 2.2vw, 2.1rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.v5-contact-option-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.53);
    line-height: 1.7;
}

.v5-contact-option-grid article > a {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--orange);
    font-size: 0.92rem;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.v5-contact-option-grid article > a:hover {
    color: #fff;
}

/* Form section */

.v5-contact-form-grid {
    align-items: start;
}

.v5-contact-form-copy {
    position: sticky;
    top: 8rem;
}

.v5-contact-response-list {
    margin-top: 2.5rem;
}

.v5-contact-response-list > div {
    padding: 1.1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-contact-response-list > div:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-contact-response-list i {
    width: 2rem;
    flex: 0 0 2rem;
    margin-top: 0.15rem;
    color: var(--orange);
    font-size: 1.15rem;
    text-align: center;
}

.v5-contact-response-list span {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.v5-contact-response-list strong {
    color: #fff;
}

.v5-contact-response-list small {
    color: rgba(255, 255, 255, 0.46);
    line-height: 1.55;
}

.v5-contact-form-panel {
    min-width: 0;
    padding: clamp(1.5rem, 4vw, 2.7rem);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.018)
        );
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.26);
}

.v5-contact-alert {
    margin-bottom: 1.5rem;
    padding: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid;
}

.v5-contact-alert strong {
    color: #fff;
}

.v5-contact-alert p {
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.6;
}

.v5-contact-alert ul {
    margin: 0.6rem 0 0;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.66);
}

.v5-contact-alert-success {
    background: rgba(82, 210, 115, 0.08);
    border-color: rgba(82, 210, 115, 0.42);
}

.v5-contact-alert-success > i {
    color: #52d273;
}

.v5-contact-alert-error {
    background: rgba(255, 85, 85, 0.08);
    border-color: rgba(255, 85, 85, 0.42);
}

.v5-contact-alert-error > i {
    color: #ff6565;
}

.v5-contact-form {
    display: grid;
    gap: 1.25rem;
}

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

.v5-contact-field {
    min-width: 0;
    display: grid;
    gap: 0.55rem;
}

.v5-contact-field label {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    font-weight: 700;
}

.v5-contact-field label span {
    color: var(--orange);
}

.v5-contact-field input,
.v5-contact-field select,
.v5-contact-field textarea {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-height: 3.65rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    outline: 0;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font: inherit;
    transition:
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.v5-contact-field textarea {
    min-height: 12rem;
    resize: vertical;
    line-height: 1.6;
}

.v5-contact-field select {
    cursor: pointer;
    appearance: none;
    padding-right: 3rem;
    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            rgba(255, 255, 255, 0.72) 50%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.72) 50%,
            transparent 50%
        );
    background-position:
        calc(100% - 1.25rem) 50%,
        calc(100% - 0.9rem) 50%;
    background-size: 0.38rem 0.38rem;
    background-repeat: no-repeat;
}

.v5-contact-field select option {
    background: #111216;
    color: #fff;
}

.v5-contact-field input:focus,
.v5-contact-field select:focus,
.v5-contact-field textarea:focus {
    border-color: var(--orange);
    background: rgba(255, 106, 0, 0.045);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.11);
}

.v5-contact-field input::placeholder,
.v5-contact-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.v5-contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.v5-contact-consent input {
    width: 1rem;
    height: 1rem;
    flex: 0 0 1rem;
    margin-top: 0.25rem;
    accent-color: var(--orange);
}

.v5-contact-consent label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    line-height: 1.55;
}

.v5-contact-submit {
    width: 100%;
    min-height: 4.3rem;
    padding: 1rem 1.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    background: var(--orange);
    color: #080809;
    font: inherit;
    font-weight: 900;
    transition:
        transform 180ms ease,
        background 180ms ease;
}

.v5-contact-submit:hover {
    transform: translateY(-0.15rem);
    background: #ff7b20;
}

.v5-contact-form-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.75rem;
    line-height: 1.55;
}

/* Spam honeypot must never be visible */

.v5-contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.v5-contact-honeypot input {
    width: 1px !important;
    height: 1px !important;
}

/* Contact details */

.v5-contact-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-contact-detail-grid article {
    min-width: 0;
    min-height: 23rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-contact-detail-grid i {
    color: var(--orange);
    font-size: 1.7rem;
}

.v5-contact-detail-grid article > span {
    margin-top: auto;
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.v5-contact-detail-grid h3 {
    margin: 1rem 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 1.7vw, 1.75rem);
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.v5-contact-detail-grid h3 a {
    color: inherit;
}

.v5-contact-detail-grid p,
.v5-contact-detail-grid address {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-style: normal;
    line-height: 1.7;
}

/* Support section */

.v5-contact-support-grid {
    align-items: center;
}

.v5-contact-support-actions {
    display: grid;
    gap: 1rem;
}

.v5-contact-support-primary,
.v5-contact-support-secondary {
    min-height: 7rem;
    padding: 1.3rem;
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.v5-contact-support-primary {
    background: var(--orange);
    color: #080809;
    border-color: var(--orange);
}

.v5-contact-support-secondary {
    background: rgba(255, 255, 255, 0.035);
    color: #fff;
}

.v5-contact-support-primary:hover,
.v5-contact-support-secondary:hover {
    transform: translateY(-0.2rem);
}

.v5-contact-support-secondary:hover {
    border-color: rgba(255, 106, 0, 0.55);
    background: rgba(255, 106, 0, 0.06);
}

.v5-contact-support-actions > a > i {
    font-size: 1.4rem;
}

.v5-contact-support-actions > a > span:nth-child(2) {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.v5-contact-support-actions strong {
    color: inherit;
}

.v5-contact-support-actions small {
    color: inherit;
    opacity: 0.65;
    overflow-wrap: anywhere;
}

/* Hours */

.v5-contact-hours-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.v5-contact-hours-grid article {
    min-height: 20rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.052),
            rgba(255, 255, 255, 0.014)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-contact-hours-grid article > span {
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.v5-contact-hours-grid strong {
    margin: auto 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 2rem;
}

.v5-contact-hours-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 1100px) {
    .v5-contact-section-heading,
    .v5-contact-form-grid,
    .v5-contact-support-grid,
    .v5-contact-faq-grid {
        grid-template-columns: 1fr;
    }

    .v5-contact-form-copy {
        position: static;
    }

    .v5-contact-option-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .v5-contact-support-actions {
        max-width: 48rem;
    }
}

@media (max-width: 700px) {
    .v5-contact-options,
    .v5-contact-form-section,
    .v5-contact-details,
    .v5-contact-support,
    .v5-contact-hours,
    .v5-contact-faq {
        padding: 4rem 0;
    }

    .v5-contact-option-grid,
    .v5-contact-detail-grid,
    .v5-contact-hours-grid,
    .v5-contact-field-grid {
        grid-template-columns: 1fr;
    }

    .v5-contact-option-grid article,
    .v5-contact-detail-grid article,
    .v5-contact-hours-grid article {
        min-height: auto;
    }

    .v5-contact-option-grid h3,
    .v5-contact-detail-grid article > span {
        margin-top: 2rem;
    }

    .v5-contact-form-panel {
        padding: 1.25rem;
    }

    .v5-contact-support-primary,
    .v5-contact-support-secondary {
        grid-template-columns: 2rem minmax(0, 1fr);
    }

    .v5-contact-support-primary > span:last-child,
    .v5-contact-support-secondary > span:last-child {
        display: none;
    }
}


/* =========================================================
   V5 INSIGHTS PAGE
   ========================================================= */

.v5-insights-featured,
.v5-insights-latest,
.v5-insights-categories,
.v5-insights-resource,
.v5-insights-newsletter,
.v5-insights-faq {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.v5-insights-featured,
.v5-insights-categories,
.v5-insights-newsletter {
    background: #080809;
}

.v5-insights-latest,
.v5-insights-resource,
.v5-insights-faq {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.09),
            transparent 25%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-insights-section-heading,
.v5-insights-resource-grid,
.v5-insights-newsletter-inner,
.v5-insights-faq-grid,
.v5-insights-final-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-insights-section-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-insights-section-heading h2,
.v5-insights-resource h2,
.v5-insights-newsletter h2,
.v5-insights-faq h2,
.v5-insights-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-insights-section-heading h2 span,
.v5-insights-resource h2 span,
.v5-insights-faq h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-insights-section-heading > p,
.v5-insights-resource-grid > div > p,
.v5-insights-newsletter-inner > div > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-insights-featured-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );
}

.v5-insights-featured-copy {
    padding: clamp(2rem, 5vw, 4rem);
}

.v5-insights-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.v5-insights-meta span {
    padding: 0.5rem 0.7rem;
    border: 1px solid rgba(255, 106, 0, 0.35);
    color: var(--orange);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.v5-insights-featured-copy h3 {
    max-width: 12ch;
    margin: 2rem 0 1.5rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2.7rem, 5vw, 5.3rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-insights-featured-copy p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

.v5-insights-featured-copy > a {
    margin-top: 1.5rem;
    display: inline-flex;
    gap: 0.8rem;
    color: var(--orange);
    font-weight: 800;
}

.v5-insights-featured-visual {
    padding: clamp(1.5rem, 4vw, 3rem);
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle at center,
            rgba(255, 106, 0, 0.14),
            transparent 60%
        ),
        #0d0e11;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-insights-security-panel {
    width: 100%;
    max-width: 30rem;
    padding: 1.5rem;
    background: #12141a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.35);
}

.v5-insights-security-panel > div {
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
}

.v5-insights-security-panel strong {
    color: #52d273;
    font-size: 0.75rem;
}

.v5-insights-security-panel ul {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.v5-insights-security-panel li {
    padding: 1rem 0;
    display: flex;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.65);
}

.v5-insights-security-panel li:last-child {
    border-bottom: 0;
}

.v5-insights-security-panel li i {
    color: #52d273;
}

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

.v5-insights-card {
    min-height: 34rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.052),
            rgba(255, 255, 255, 0.014)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        transform 200ms ease,
        border-color 200ms ease,
        background 200ms ease;
}

.v5-insights-card:hover {
    transform: translateY(-0.35rem);
    border-color: rgba(255, 106, 0, 0.5);
    background: rgba(255, 106, 0, 0.055);
}

.v5-insights-card-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.v5-insights-card-top span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.v5-insights-card-top i {
    color: var(--orange);
    font-size: 1.5rem;
}

.v5-insights-card h3 {
    margin: 3.5rem 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.v5-insights-card > p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-insights-card-meta {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.72rem;
}

.v5-insights-card > a {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    color: var(--orange);
    font-weight: 800;
}

.v5-insights-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-insights-category-grid a {
    min-height: 24rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition:
        transform 200ms ease,
        background 200ms ease,
        border-color 200ms ease;
}

.v5-insights-category-grid a:hover {
    transform: translateY(-0.3rem);
    background: rgba(255, 106, 0, 0.07);
    border-color: rgba(255, 106, 0, 0.5);
}

.v5-insights-category-grid a > span {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.7rem;
    font-weight: 900;
}

.v5-insights-category-grid i {
    margin-top: 2.5rem;
    color: var(--orange);
    font-size: 1.8rem;
}

.v5-insights-category-grid h3 {
    margin: auto 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.9rem;
}

.v5-insights-category-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-insights-resource-list article {
    padding: 1.5rem 0;
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-insights-resource-list article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-insights-resource-list article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
}

.v5-insights-resource-list h3 {
    margin: 0 0 0.5rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.v5-insights-resource-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.v5-insights-newsletter-inner {
    align-items: center;
}

.v5-insights-newsletter-form {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.v5-insights-newsletter-form label {
    display: block;
    margin-bottom: 0.7rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

.v5-insights-newsletter-form > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
}

.v5-insights-newsletter-form input {
    min-width: 0;
    min-height: 4rem;
    padding: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    outline: 0;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font: inherit;
}

.v5-insights-newsletter-form input:focus {
    border-color: var(--orange);
}

.v5-insights-newsletter-form button {
    min-height: 4rem;
    padding: 0 1.4rem;
    border: 0;
    cursor: pointer;
    background: var(--orange);
    color: #080809;
    font: inherit;
    font-weight: 900;
}

.v5-insights-newsletter-form > p {
    margin: 0.8rem 0 0;
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.72rem;
}

.v5-insights-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-insights-final-cta h2 {
    color: #080809;
}

.v5-insights-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-insights-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1100px) {
    .v5-insights-section-heading,
    .v5-insights-resource-grid,
    .v5-insights-newsletter-inner,
    .v5-insights-faq-grid,
    .v5-insights-final-cta-inner,
    .v5-insights-featured-card {
        grid-template-columns: 1fr;
    }

    .v5-insights-featured-visual {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .v5-insights-grid,
    .v5-insights-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v5-insights-final-actions {
        max-width: 31rem;
    }
}

@media (max-width: 700px) {
    .v5-insights-grid,
    .v5-insights-category-grid {
        grid-template-columns: 1fr;
    }

    .v5-insights-card {
        min-height: auto;
    }

    .v5-insights-newsletter-form > div {
        grid-template-columns: 1fr;
    }

    .v5-insights-newsletter-form button {
        width: 100%;
    }
}

/* =========================================================
   V5 INSIGHT ARTICLE FOUNDATION
   ========================================================= */

.v5-article {
    background: #080809;
}

.v5-article-header,
.v5-article-body,
.v5-article-footer {
    padding: clamp(4rem, 8vw, 8rem) 0;
}

.v5-article-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-article-header-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: start;
}

.v5-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.v5-article-meta span {
    padding: 0.5rem 0.7rem;
    border: 1px solid rgba(255, 106, 0, 0.35);
    color: var(--orange);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.v5-article-lead {
    max-width: 44rem;
    margin: 2rem 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    line-height: 1.65;
}

.v5-article-summary {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-article-summary nav {
    display: grid;
    margin-top: 1.2rem;
}

.v5-article-summary a {
    padding: 0.9rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.64);
}

.v5-article-summary a:hover {
    color: var(--orange);
}

.v5-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 20rem;
    gap: clamp(3rem, 7vw, 7rem);
    align-items: start;
}

.v5-article-content {
    min-width: 0;
}

.v5-article-section {
    padding: 0 0 clamp(4rem, 8vw, 7rem);
    scroll-margin-top: 8rem;
}

.v5-article-section + .v5-article-section {
    padding-top: clamp(4rem, 8vw, 7rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-article-section h2 {
    max-width: 14ch;
    margin: 0 0 2rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2.7rem, 5vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.v5-article-section > p {
    max-width: 52rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.05rem;
    line-height: 1.9;
}

.v5-article-callout {
    margin-top: 2rem;
    padding: 1.4rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 106, 0, 0.07);
    border: 1px solid rgba(255, 106, 0, 0.35);
}

.v5-article-callout.is-critical {
    background: rgba(255, 83, 83, 0.07);
    border-color: rgba(255, 83, 83, 0.35);
}

.v5-article-callout > i {
    margin-top: 0.2rem;
    color: var(--orange);
    font-size: 1.25rem;
}

.v5-article-callout.is-critical > i {
    color: #ff6969;
}

.v5-article-callout strong {
    color: #fff;
}

.v5-article-callout p {
    margin: 0.4rem 0 0;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.7;
}

.v5-article-card-grid,
.v5-article-warning-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-article-card-grid article,
.v5-article-warning-grid article {
    min-height: 18rem;
    padding: 1.7rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-article-card-grid article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
}

.v5-article-warning-grid i {
    color: var(--orange);
    font-size: 1.5rem;
}

.v5-article-card-grid h3,
.v5-article-warning-grid h3 {
    margin: auto 0 0.8rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.6rem;
}

.v5-article-card-grid p,
.v5-article-warning-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.7;
}

.v5-article-control-list {
    display: grid;
}

.v5-article-control-list article {
    padding: 1.5rem 0;
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-article-control-list article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-article-control-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.08);
    border: 1px solid rgba(255, 106, 0, 0.4);
    color: var(--orange);
}

.v5-article-control-list h3 {
    margin: 0 0 0.6rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.v5-article-control-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.7;
}

.v5-article-checklist {
    margin-top: 2rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-article-checklist h3 {
    margin: 0 0 1.5rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.v5-article-checklist ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.v5-article-checklist li {
    position: relative;
    padding: 0.85rem 0 0.85rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.6;
}

.v5-article-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 900;
}

.v5-article-quote {
    margin: 2rem 0 0;
    padding: 2rem;
    border-left: 0.25rem solid var(--orange);
    background: rgba(255, 106, 0, 0.05);
}

.v5-article-quote p {
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.6vw, 2.4rem);
    line-height: 1.35;
}

.v5-article-steps article {
    padding: 1.4rem 0;
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-article-steps article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-article-steps article > span {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 900;
}

.v5-article-steps h3 {
    margin: 0 0 0.5rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.45rem;
}

.v5-article-steps p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.7;
}

.v5-article-sidebar {
    position: sticky;
    top: 8rem;
    display: grid;
    gap: 1rem;
}

.v5-article-sidebar-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-article-sidebar-card h3 {
    margin: 0.8rem 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.75rem;
    line-height: 1.1;
}

.v5-article-sidebar-card p {
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.7;
}

.v5-article-sidebar-card > a {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--orange);
    font-weight: 800;
}

.v5-article-sidebar-card nav {
    display: grid;
}

.v5-article-sidebar-card nav a {
    padding: 0.85rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.62);
}

.v5-article-sidebar-card nav a:hover {
    color: var(--orange);
}

.v5-article-footer {
    background: #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-article-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    align-items: center;
}

.v5-article-footer-inner p:last-child {
    max-width: 48rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.7;
}

.v5-article-footer-inner > a {
    color: var(--orange);
    font-weight: 800;
    white-space: nowrap;
}

.v5-article-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-article-final-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-article-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #080809;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-article-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-article-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1100px) {
    .v5-article-header-grid,
    .v5-article-layout,
    .v5-article-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .v5-article-summary {
        max-width: 45rem;
    }

    .v5-article-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v5-article-final-actions {
        max-width: 32rem;
    }
}

@media (max-width: 700px) {
    .v5-article-card-grid,
    .v5-article-warning-grid,
    .v5-article-sidebar {
        grid-template-columns: 1fr;
    }

    .v5-article-control-list article,
    .v5-article-steps article {
        grid-template-columns: 1fr;
    }

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

    .v5-article-footer-inner > a {
        white-space: normal;
    }
}


/* =========================================================
   V5 HOSTING COMPARISON TABLE
   ========================================================= */

.v5-hosting-comparison {
    margin-top: 2rem;
    overflow-x: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-hosting-comparison-row {
    min-width: 48rem;
    display: grid;
    grid-template-columns:
        minmax(10rem, 1.15fr)
        repeat(3, minmax(9rem, 1fr));
}

.v5-hosting-comparison-row > * {
    min-width: 0;
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-hosting-comparison-row strong {
    color: #fff;
}

.v5-hosting-comparison-row span {
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.5;
}

.v5-hosting-comparison-row.is-heading {
    background: rgba(255, 106, 0, 0.08);
}

.v5-hosting-comparison-row.is-heading span {
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (max-width: 700px) {
    .v5-hosting-comparison {
        margin-right: -1rem;
        padding-right: 1rem;
    }
}



/* =========================================================
   V5 NEWSLETTER SUBSCRIPTION STATUS
   ========================================================= */

.v5-insights-newsletter {
    scroll-margin-top: 8rem;
}

.v5-newsletter-message {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    border: 1px solid;
}

.v5-newsletter-message > i {
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

.v5-newsletter-message strong {
    color: #fff;
}

.v5-newsletter-message p {
    margin: 0.3rem 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.84rem;
    line-height: 1.55;
}

.v5-newsletter-message.is-success {
    background: rgba(82, 210, 115, 0.08);
    border-color: rgba(82, 210, 115, 0.4);
}

.v5-newsletter-message.is-success > i {
    color: #52d273;
}

.v5-newsletter-message.is-info {
    background: rgba(80, 160, 255, 0.08);
    border-color: rgba(80, 160, 255, 0.4);
}

.v5-newsletter-message.is-info > i {
    color: #69aaff;
}

.v5-newsletter-message.is-error {
    background: rgba(255, 85, 85, 0.08);
    border-color: rgba(255, 85, 85, 0.42);
}

.v5-newsletter-message.is-error > i {
    color: #ff6565;
}

.v5-newsletter-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* =========================================================
   FINAL V5 SERVICES AND CONTACT WIDGET HOTFIX
   ========================================================= */

/* Services directory */

.v5-services-group {
    overflow: hidden;
}

.v5-services-group-heading,
.v5-services-overview-grid,
.v5-services-final-cta-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) !important;
    gap: clamp(2.5rem, 7vw, 7rem) !important;
}

.v5-services-group-heading > *,
.v5-services-overview-grid > *,
.v5-services-directory-grid > * {
    min-width: 0 !important;
}

.v5-services-directory-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    border: 0 !important;
}

.v5-services-directory-card {
    box-sizing: border-box !important;
    min-width: 0 !important;
    min-height: 25rem !important;
    padding: 2rem !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        ) !important;
    border: 1px solid rgba(255, 255, 255, 0.11) !important;
    color: inherit !important;
    text-decoration: none !important;
}

.v5-services-directory-card:hover {
    transform: translateY(-0.35rem) !important;
    border-color: rgba(255, 106, 0, 0.55) !important;
    background: rgba(255, 106, 0, 0.065) !important;
}

.v5-services-directory-icon {
    width: 4rem !important;
    height: 4rem !important;
    flex: 0 0 4rem !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 50% !important;
    background: rgba(255, 106, 0, 0.09) !important;
    border: 1px solid rgba(255, 106, 0, 0.42) !important;
    color: var(--orange, #ff6800) !important;
    font-size: 1.35rem !important;
}

.v5-services-directory-card h3 {
    margin: auto 0 1rem !important;
    color: #fff !important;
    font-size: clamp(1.55rem, 2vw, 2rem) !important;
    line-height: 1.08 !important;
    overflow-wrap: anywhere;
}

.v5-services-directory-card p {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.56) !important;
    font-size: 0.98rem !important;
    line-height: 1.7 !important;
    overflow-wrap: anywhere;
}

.v5-services-directory-card > span {
    margin-top: 1.6rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    color: var(--orange, #ff6800) !important;
    font-size: 0.84rem !important;
    font-weight: 800 !important;
}

.v5-services-overview-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
}

.v5-services-overview-badges span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.55rem !important;
    padding: 0.7rem 1rem !important;
    border: 1px solid rgba(255, 255, 255, 0.13) !important;
    background: rgba(255, 255, 255, 0.025) !important;
    white-space: nowrap;
}

.v5-services-jump-nav .container {
    display: flex !important;
    min-width: max-content;
}

.v5-services-jump-nav a {
    display: flex !important;
    align-items: center !important;
    min-height: 4rem !important;
    padding: 0.9rem 1.25rem !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.65) !important;
    white-space: nowrap;
}

/* Floating Contact button */

.v5-floating-contact {
    position: fixed !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: auto !important;
    top: auto !important;
    z-index: 10001 !important;
    width: auto !important;
    min-width: 12rem !important;
    min-height: 4.5rem !important;
    padding: 1rem 1.6rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.9rem !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #ff6800 !important;
    color: #fff !important;
    font: inherit !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    box-shadow: 0 1.2rem 3rem rgba(255, 104, 0, 0.3) !important;
    cursor: pointer !important;
}

.v5-floating-contact-symbol {
    font-size: 1.25rem;
    font-weight: 400;
}

/* Floating Contact panel */

.v5-contact-panel {
    box-sizing: border-box !important;
    position: fixed !important;
    right: 1.5rem !important;
    bottom: 7rem !important;
    left: auto !important;
    top: auto !important;
    z-index: 10000 !important;
    width: min(24rem, calc(100vw - 2rem)) !important;
    max-height: calc(100vh - 9rem) !important;
    padding: 1rem !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    border-radius: 1.65rem !important;
    background: #fff !important;
    border: 1px solid rgba(16, 36, 66, 0.1) !important;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.45) !important;
}

.v5-contact-panel[hidden] {
    display: none !important;
}

.v5-contact-panel,
.v5-contact-panel * {
    box-sizing: border-box !important;
}

.v5-contact-panel-header {
    padding: 0.5rem 0.35rem 1rem !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 1rem !important;
}

.v5-contact-panel-header strong {
    display: block !important;
    color: #102442 !important;
    font-size: 1.2rem !important;
    line-height: 1.2 !important;
}

.v5-contact-panel-header p {
    margin: 0.35rem 0 0 !important;
    color: #71819d !important;
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
}

.v5-contact-panel-close {
    width: 2.4rem !important;
    height: 2.4rem !important;
    flex: 0 0 2.4rem !important;
    display: grid !important;
    place-items: center !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #edf1f6 !important;
    color: #102442 !important;
    font-size: 1.35rem !important;
    cursor: pointer !important;
}

.v5-contact-panel-options {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
}

.v5-contact-option {
    box-sizing: border-box !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 5.2rem !important;
    height: auto !important;
    padding: 0.85rem 1rem !important;
    display: grid !important;
    grid-template-columns: 3.5rem minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 1rem !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 1.25rem !important;
    background: #f3f6fa !important;
    color: #102442 !important;
    text-decoration: none !important;
}

.v5-contact-option:hover {
    background: #e9eef5 !important;
}

.v5-contact-option-icon {
    width: 3.5rem !important;
    height: 3.5rem !important;
    min-width: 3.5rem !important;
    min-height: 3.5rem !important;
    max-width: 3.5rem !important;
    max-height: 3.5rem !important;
    display: grid !important;
    place-items: center !important;
    overflow: hidden !important;
    border-radius: 1rem !important;
    color: #fff !important;
    font-size: 1.3rem !important;
    line-height: 1 !important;
}

.v5-contact-option-icon.is-whatsapp {
    background: #159b4f !important;
}

.v5-contact-option-icon.is-quote {
    background: #ff5b00 !important;
}

.v5-contact-option-icon.is-support {
    background: #205fcf !important;
}

.v5-contact-option-icon.is-email {
    background: #102442 !important;
}

.v5-contact-option-copy {
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.2rem !important;
}

.v5-contact-option-copy strong {
    margin: 0 !important;
    color: #102442 !important;
    font-size: 1rem !important;
    line-height: 1.2 !important;
}

.v5-contact-option-copy small {
    margin: 0 !important;
    color: #71819d !important;
    font-size: 0.82rem !important;
    line-height: 1.35 !important;
}

/* Override page-specific rules that previously stretched widget links. */

.v5-contact-panel .v5-contact-option {
    min-height: 5.2rem !important;
}

@media (max-width: 1150px) {
    .v5-services-group-heading,
    .v5-services-overview-grid,
    .v5-services-final-cta-inner {
        grid-template-columns: 1fr !important;
    }

    .v5-services-directory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 720px) {
    .v5-services-directory-grid {
        grid-template-columns: 1fr !important;
    }

    .v5-services-directory-card {
        min-height: auto !important;
    }

    .v5-services-directory-card h3 {
        margin-top: 3rem !important;
    }

    .v5-floating-contact {
        right: 0.75rem !important;
        bottom: 0.75rem !important;
        min-width: 10.5rem !important;
        min-height: 4rem !important;
    }

    .v5-contact-panel {
        right: 0.75rem !important;
        bottom: 5.75rem !important;
        width: calc(100vw - 1.5rem) !important;
        max-height: calc(100vh - 7rem) !important;
    }
}


/* =========================================================
   V5 CTA PHONE VISIBILITY FIX
   ========================================================= */

.v5-services-final-cta .hozit-build-phone,
.v5-services-final-cta .hozit-build-phone:link,
.v5-services-final-cta .hozit-build-phone:visited,
.v5-article-final-cta .hozit-build-phone,
.v5-article-final-cta .hozit-build-phone:link,
.v5-article-final-cta .hozit-build-phone:visited,
.v5-insights-final-cta .hozit-build-phone,
.v5-insights-final-cta .hozit-build-phone:link,
.v5-insights-final-cta .hozit-build-phone:visited {
    color: #080809 !important;
    background: transparent !important;
    border: 1px solid rgba(8, 8, 9, 0.35) !important;
    text-decoration: none !important;
    opacity: 1 !important;
}

.v5-services-final-cta .hozit-build-phone:hover,
.v5-services-final-cta .hozit-build-phone:focus-visible,
.v5-article-final-cta .hozit-build-phone:hover,
.v5-article-final-cta .hozit-build-phone:focus-visible,
.v5-insights-final-cta .hozit-build-phone:hover,
.v5-insights-final-cta .hozit-build-phone:focus-visible {
    color: #ffffff !important;
    background: #080809 !important;
    border-color: #080809 !important;
}

.v5-services-final-actions,
.v5-article-final-actions,
.v5-insights-final-actions {
    position: relative;
    z-index: 3;
}

.v5-services-final-actions .hozit-build-phone,
.v5-article-final-actions .hozit-build-phone,
.v5-insights-final-actions .hozit-build-phone {
    min-height: 4rem;
    padding: 1rem 1.4rem;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-weight: 900 !important;
}

/* =========================================================
   SERVICES CTA PHONE — FINAL COLOUR FIX
   ========================================================= */

.v5-services-final-actions > a.hozit-build-phone,
.v5-services-final-actions > a.hozit-build-phone:link,
.v5-services-final-actions > a.hozit-build-phone:visited {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: #080809 !important;
    border: 1px solid #080809 !important;
    opacity: 1 !important;
}

.v5-services-final-actions > a.hozit-build-phone:hover,
.v5-services-final-actions > a.hozit-build-phone:focus-visible {
    color: #080809 !important;
    -webkit-text-fill-color: #080809 !important;
    background: #ffffff !important;
    border-color: #ffffff !important;
}

/* =========================================================
   HOZIT PHONE CTA - FINAL BRAND HOVER
   ========================================================= */

.v5-services-final-actions > a.hozit-build-phone,
.v5-services-final-actions > a.hozit-build-phone:link,
.v5-services-final-actions > a.hozit-build-phone:visited {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 4rem;
    padding: 1rem 1.6rem;
    border-radius: 999px;
    background: #080809 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    border: 2px solid #080809 !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.v5-services-final-actions > a.hozit-build-phone:hover,
.v5-services-final-actions > a.hozit-build-phone:focus-visible {
    background: #ffffff !important;
    color: #ff6800 !important;
    -webkit-text-fill-color: #ff6800 !important;
    border-color: #ff6800 !important;
    box-shadow: 0 12px 30px rgba(255,104,0,.30);
    transform: translateY(-3px);
}

.v5-services-final-actions > a.hozit-build-phone:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255,104,0,.20);
}


/* =========================================================
   V5 ENTERPRISE COMPONENT LIBRARY
   ========================================================= */

.v5-component-overview,
.v5-component-section {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: #080809;
}

.v5-component-section.is-alternate {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.08),
            transparent 25%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-component-overview-grid,
.v5-component-section-heading,
.v5-component-faq-grid,
.v5-component-final-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-component-section-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-component-overview h2,
.v5-component-section-heading h2,
.v5-component-faq-grid h2,
.v5-component-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-component-overview-copy,
.v5-component-section-heading > p {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-component-highlight-list {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.v5-component-highlight-list span {
    padding: 0.7rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
}

.v5-component-highlight-list i {
    color: var(--orange);
}

.v5-component-card-grid,
.v5-component-feature-grid,
.v5-component-benefit-grid,
.v5-component-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.v5-component-card,
.v5-component-feature,
.v5-component-benefit-grid article,
.v5-component-related-grid > a {
    min-width: 0;
    min-height: 22rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.052),
            rgba(255, 255, 255, 0.014)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-component-number {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.72rem;
    font-weight: 900;
}

.v5-component-card > i,
.v5-component-benefit-grid article > i,
.v5-component-related-grid > a > i {
    margin-top: 2rem;
    color: var(--orange);
    font-size: 1.7rem;
}

.v5-component-card h3,
.v5-component-feature h3,
.v5-component-benefit-grid h3,
.v5-component-related-grid h3 {
    margin: auto 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.9rem;
    line-height: 1.08;
}

.v5-component-card p,
.v5-component-feature p,
.v5-component-benefit-grid p,
.v5-component-related-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.53);
    line-height: 1.7;
}

.v5-component-icon {
    width: 4rem;
    height: 4rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.09);
    border: 1px solid rgba(255, 106, 0, 0.42);
    color: var(--orange);
    font-size: 1.35rem;
}

.v5-component-related-grid > a > span {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    color: var(--orange);
    font-weight: 800;
}

.v5-component-process {
    display: grid;
}

.v5-component-process article {
    padding: 1.5rem 0;
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr);
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-component-process article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-component-process article > span {
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 900;
}

.v5-component-process h3 {
    margin: 0 0 0.5rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.6rem;
}

.v5-component-process p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.7;
}

.v5-component-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-component-final-cta h2 {
    color: #080809;
}

.v5-component-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-component-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.v5-component-final-actions > a.hozit-build-phone,
.v5-component-final-actions > a.hozit-build-phone:link,
.v5-component-final-actions > a.hozit-build-phone:visited {
    color: #fff !important;
    background: #080809 !important;
    border: 2px solid #080809 !important;
    -webkit-text-fill-color: #fff !important;
}

.v5-component-final-actions > a.hozit-build-phone:hover,
.v5-component-final-actions > a.hozit-build-phone:focus-visible {
    color: #ff6800 !important;
    background: #fff !important;
    border-color: #ff6800 !important;
    -webkit-text-fill-color: #ff6800 !important;
}

@media (max-width: 1100px) {
    .v5-component-overview-grid,
    .v5-component-section-heading,
    .v5-component-faq-grid,
    .v5-component-final-cta-grid {
        grid-template-columns: 1fr;
    }

    .v5-component-card-grid,
    .v5-component-feature-grid,
    .v5-component-benefit-grid,
    .v5-component-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v5-component-final-actions {
        max-width: 32rem;
    }
}

@media (max-width: 700px) {
    .v5-component-card-grid,
    .v5-component-feature-grid,
    .v5-component-benefit-grid,
    .v5-component-related-grid {
        grid-template-columns: 1fr;
    }

    .v5-component-card,
    .v5-component-feature,
    .v5-component-benefit-grid article,
    .v5-component-related-grid > a {
        min-height: auto;
    }

    .v5-component-process article {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   V5 INDUSTRIES HUB
   ========================================================= */

.v5-industry-overview,
.v5-industry-directory,
.v5-industry-approach {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: #080809;
}

.v5-industry-directory {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.08),
            transparent 26%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-industry-overview-grid,
.v5-industry-heading,
.v5-industry-final-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-industry-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-industry-overview h2,
.v5-industry-heading h2,
.v5-industry-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-industry-overview h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-industry-overview-copy,
.v5-industry-heading > p {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-industry-overview-badges {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.v5-industry-overview-badges span {
    padding: 0.7rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
}

.v5-industry-overview-badges i {
    color: var(--orange);
}

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

.v5-industry-card {
    min-width: 0;
    min-height: 29rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.052),
            rgba(255, 255, 255, 0.014)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.v5-industry-card:hover {
    transform: translateY(-0.35rem);
    border-color: rgba(255, 106, 0, 0.5);
    background: rgba(255, 106, 0, 0.055);
}

.v5-industry-icon {
    width: 4rem;
    height: 4rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.09);
    border: 1px solid rgba(255, 106, 0, 0.42);
    color: var(--orange);
    font-size: 1.35rem;
}

.v5-industry-card h3 {
    margin: 3rem 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.9rem;
    line-height: 1.08;
}

.v5-industry-card > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.53);
    line-height: 1.7;
}

.v5-industry-service-list {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.v5-industry-service-list span {
    padding: 0.45rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.72rem;
}

.v5-industry-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.v5-industry-process article {
    min-width: 0;
    min-height: 21rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-industry-process article > span {
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 900;
}

.v5-industry-process h3 {
    margin: 6rem 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.9rem;
}

.v5-industry-process p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.7;
}

.v5-industry-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-industry-final-cta h2 {
    color: #080809;
}

.v5-industry-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-industry-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.v5-industry-final-actions > a.hozit-build-phone,
.v5-industry-final-actions > a.hozit-build-phone:link,
.v5-industry-final-actions > a.hozit-build-phone:visited {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: #080809 !important;
    border: 2px solid #080809 !important;
}

.v5-industry-final-actions > a.hozit-build-phone:hover,
.v5-industry-final-actions > a.hozit-build-phone:focus-visible {
    color: #ff6800 !important;
    -webkit-text-fill-color: #ff6800 !important;
    background: #fff !important;
    border-color: #ff6800 !important;
}

@media (max-width: 1100px) {
    .v5-industry-overview-grid,
    .v5-industry-heading,
    .v5-industry-final-cta-grid {
        grid-template-columns: 1fr;
    }

    .v5-industry-grid,
    .v5-industry-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v5-industry-final-actions {
        max-width: 32rem;
    }
}

@media (max-width: 700px) {
    .v5-industry-grid,
    .v5-industry-process {
        grid-template-columns: 1fr;
    }

    .v5-industry-card,
    .v5-industry-process article {
        min-height: auto;
    }

    .v5-industry-process h3 {
        margin-top: 3rem;
    }
}



/* =========================================================
   V5 KNOWLEDGE CENTRE
   ========================================================= */

.v5-knowledge-intro,
.v5-knowledge-featured,
.v5-knowledge-categories,
.v5-knowledge-latest {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: #080809;
}

.v5-knowledge-featured,
.v5-knowledge-latest {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.08),
            transparent 26%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-knowledge-intro-grid,
.v5-knowledge-heading,
.v5-knowledge-final-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-knowledge-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-knowledge-intro h2,
.v5-knowledge-heading h2,
.v5-knowledge-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-knowledge-intro h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-knowledge-intro-copy,
.v5-knowledge-heading > p {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-knowledge-heading > a {
    justify-self: start;
    color: var(--orange);
    font-weight: 800;
}

.v5-knowledge-search {
    margin-top: 2rem;
}

.v5-knowledge-search label {
    display: block;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    font-weight: 800;
}

.v5-knowledge-search > div {
    min-height: 4rem;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.v5-knowledge-search i {
    color: var(--orange);
}

.v5-knowledge-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font: inherit;
}

.v5-knowledge-search input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.v5-knowledge-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.v5-knowledge-featured-card {
    min-width: 0;
    min-height: 31rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.014)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.v5-knowledge-featured-card:hover {
    transform: translateY(-0.35rem);
    border-color: rgba(255, 106, 0, 0.55);
    background: rgba(255, 106, 0, 0.055);
}

.v5-knowledge-featured-icon,
.v5-knowledge-category-icon {
    width: 4rem;
    height: 4rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.09);
    border: 1px solid rgba(255, 106, 0, 0.42);
    color: var(--orange);
    font-size: 1.35rem;
}

.v5-knowledge-featured-card > span {
    margin-top: 2.5rem;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.v5-knowledge-featured-card h3,
.v5-knowledge-category h3,
.v5-knowledge-latest-card h3 {
    color: #fff;
    font-family: var(--font-display);
    line-height: 1.08;
}

.v5-knowledge-featured-card h3 {
    margin: 1rem 0;
    font-size: 2rem;
}

.v5-knowledge-featured-card p,
.v5-knowledge-category > p,
.v5-knowledge-latest-card p {
    color: rgba(255, 255, 255, 0.53);
    line-height: 1.7;
}

.v5-knowledge-featured-card strong {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--orange);
}

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

.v5-knowledge-category {
    min-width: 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-knowledge-category h3 {
    margin: 2.5rem 0 1rem;
    font-size: 2rem;
}

.v5-knowledge-category nav {
    margin-top: 2rem;
    display: grid;
}

.v5-knowledge-category nav a {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.74);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-knowledge-category nav a:hover {
    color: var(--orange);
}

.v5-knowledge-latest-list {
    display: grid;
}

.v5-knowledge-latest-card {
    padding: 1.5rem 0;
    display: grid;
    grid-template-columns: 11rem minmax(0, 1fr) 2rem;
    align-items: center;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.v5-knowledge-latest-card:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-knowledge-latest-meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.v5-knowledge-latest-meta span {
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.v5-knowledge-latest-meta time {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.78rem;
}

.v5-knowledge-latest-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.55rem;
}

.v5-knowledge-latest-card p {
    margin: 0;
}

.v5-knowledge-latest-card > i {
    color: var(--orange);
}

.v5-knowledge-results-message {
    margin-bottom: 2rem;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

[data-knowledge-item][hidden] {
    display: none !important;
}

.v5-knowledge-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-knowledge-final-cta h2 {
    color: #080809;
}

.v5-knowledge-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-knowledge-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.v5-knowledge-final-actions > a.hozit-build-phone,
.v5-knowledge-final-actions > a.hozit-build-phone:link,
.v5-knowledge-final-actions > a.hozit-build-phone:visited {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: #080809 !important;
    border: 2px solid #080809 !important;
}

.v5-knowledge-final-actions > a.hozit-build-phone:hover,
.v5-knowledge-final-actions > a.hozit-build-phone:focus-visible {
    color: #ff6800 !important;
    -webkit-text-fill-color: #ff6800 !important;
    background: #fff !important;
    border-color: #ff6800 !important;
}

@media (max-width: 1100px) {
    .v5-knowledge-intro-grid,
    .v5-knowledge-heading,
    .v5-knowledge-final-cta-grid {
        grid-template-columns: 1fr;
    }

    .v5-knowledge-featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v5-knowledge-final-actions {
        max-width: 32rem;
    }
}

@media (max-width: 760px) {
    .v5-knowledge-featured-grid,
    .v5-knowledge-category-grid {
        grid-template-columns: 1fr;
    }

    .v5-knowledge-featured-card {
        min-height: auto;
    }

    .v5-knowledge-latest-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}



/* =========================================================
   V5 LEGAL CENTRE
   ========================================================= */

.v5-legal-overview,
.v5-legal-documents,
.v5-legal-principles,
.v5-legal-notice {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: #080809;
}

.v5-legal-documents,
.v5-legal-notice {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.08),
            transparent 26%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-legal-overview-grid,
.v5-legal-heading,
.v5-legal-notice-inner,
.v5-legal-final-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-legal-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-legal-overview h2,
.v5-legal-heading h2,
.v5-legal-notice h2,
.v5-legal-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-legal-overview h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-legal-overview-copy,
.v5-legal-heading > p,
.v5-legal-notice-inner > div:last-child {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-legal-overview-badges {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.v5-legal-overview-badges span {
    padding: 0.7rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
}

.v5-legal-overview-badges i {
    color: var(--orange);
}

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

.v5-legal-card {
    min-width: 0;
    min-height: 28rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.052),
            rgba(255, 255, 255, 0.014)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.v5-legal-card:hover {
    transform: translateY(-0.35rem);
    border-color: rgba(255, 106, 0, 0.52);
    background: rgba(255, 106, 0, 0.055);
}

.v5-legal-card-icon {
    width: 4rem;
    height: 4rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--orange);
    background: rgba(255, 106, 0, 0.09);
    border: 1px solid rgba(255, 106, 0, 0.42);
    font-size: 1.35rem;
}

.v5-legal-card > span {
    margin-top: 2.5rem;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.v5-legal-card h3,
.v5-legal-principles-grid h3 {
    color: #fff;
    font-family: var(--font-display);
    line-height: 1.08;
}

.v5-legal-card h3 {
    margin: 1rem 0;
    font-size: 1.9rem;
}

.v5-legal-card p,
.v5-legal-principles-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.53);
    line-height: 1.7;
}

.v5-legal-card strong {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--orange);
}

.v5-legal-principles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.v5-legal-principles-grid article {
    min-width: 0;
    min-height: 21rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-legal-principles-grid article > i {
    color: var(--orange);
    font-size: 1.6rem;
}

.v5-legal-principles-grid h3 {
    margin: 6rem 0 1rem;
    font-size: 1.8rem;
}

.v5-legal-notice-inner {
    align-items: start;
}

.v5-legal-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-legal-final-cta h2 {
    color: #080809;
}

.v5-legal-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-legal-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.v5-legal-final-actions > a.hozit-build-phone,
.v5-legal-final-actions > a.hozit-build-phone:link,
.v5-legal-final-actions > a.hozit-build-phone:visited {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: #080809 !important;
    border: 2px solid #080809 !important;
}

.v5-legal-final-actions > a.hozit-build-phone:hover,
.v5-legal-final-actions > a.hozit-build-phone:focus-visible {
    color: #ff6800 !important;
    -webkit-text-fill-color: #ff6800 !important;
    background: #fff !important;
    border-color: #ff6800 !important;
}

@media (max-width: 1100px) {
    .v5-legal-overview-grid,
    .v5-legal-heading,
    .v5-legal-notice-inner,
    .v5-legal-final-cta-grid {
        grid-template-columns: 1fr;
    }

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

    .v5-legal-principles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v5-legal-final-actions {
        max-width: 32rem;
    }
}

@media (max-width: 700px) {
    .v5-legal-grid,
    .v5-legal-principles-grid {
        grid-template-columns: 1fr;
    }

    .v5-legal-card,
    .v5-legal-principles-grid article {
        min-height: auto;
    }

    .v5-legal-principles-grid h3 {
        margin-top: 3rem;
    }
}



/* =========================================================
   V5 TRUST CENTRE
   ========================================================= */

.v5-trust-overview,
.v5-trust-credentials,
.v5-trust-pillars,
.v5-trust-security,
.v5-trust-resources {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: #080809;
}

.v5-trust-credentials,
.v5-trust-security {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.08),
            transparent 26%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-trust-overview-grid,
.v5-trust-heading,
.v5-trust-final-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-trust-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-trust-overview h2,
.v5-trust-heading h2,
.v5-trust-final-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-trust-overview h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.v5-trust-overview-copy,
.v5-trust-heading > p {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-trust-overview-badges {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.v5-trust-overview-badges span {
    padding: 0.7rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
}

.v5-trust-overview-badges i {
    color: var(--orange);
}

.v5-trust-credential-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.v5-trust-credential-grid article {
    min-width: 0;
    min-height: 11rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-trust-credential-grid span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.v5-trust-credential-grid strong {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.7rem;
    overflow-wrap: anywhere;
}

.v5-trust-pillar-grid,
.v5-trust-security-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.v5-trust-pillar-card {
    min-width: 0;
    min-height: 30rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.052),
            rgba(255, 255, 255, 0.014)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-trust-icon {
    width: 4rem;
    height: 4rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--orange);
    background: rgba(255, 106, 0, 0.09);
    border: 1px solid rgba(255, 106, 0, 0.42);
    font-size: 1.35rem;
}

.v5-trust-pillar-card h3,
.v5-trust-security-grid h3,
.v5-trust-resource-grid h3 {
    color: #fff;
    font-family: var(--font-display);
    line-height: 1.08;
}

.v5-trust-pillar-card h3 {
    margin: 3rem 0 1rem;
    font-size: 2rem;
}

.v5-trust-pillar-card > p,
.v5-trust-security-grid p,
.v5-trust-resource-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.53);
    line-height: 1.7;
}

.v5-trust-pillar-card nav {
    margin-top: auto;
    padding-top: 2rem;
    display: grid;
}

.v5-trust-pillar-card nav a {
    padding: 0.9rem 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.72);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.v5-trust-pillar-card nav a:hover {
    color: var(--orange);
}

.v5-trust-security-grid article {
    min-width: 0;
    min-height: 21rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-trust-security-grid article > i {
    color: var(--orange);
    font-size: 1.6rem;
}

.v5-trust-security-grid h3 {
    margin: 6rem 0 1rem;
    font-size: 1.8rem;
}

.v5-trust-resource-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.v5-trust-resource-grid > a {
    min-width: 0;
    min-height: 23rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.052),
            rgba(255, 255, 255, 0.014)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition:
        transform 180ms ease,
        border-color 180ms ease;
}

.v5-trust-resource-grid > a:hover {
    transform: translateY(-0.35rem);
    border-color: rgba(255, 106, 0, 0.5);
}

.v5-trust-resource-grid > a > i {
    color: var(--orange);
    font-size: 1.7rem;
}

.v5-trust-resource-grid h3 {
    margin: 4rem 0 1rem;
    font-size: 1.8rem;
}

.v5-trust-resource-grid > a > span {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--orange);
    font-weight: 800;
}

.v5-trust-final-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-trust-final-cta h2 {
    color: #080809;
}

.v5-trust-final-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-trust-final-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.v5-trust-final-actions > a.hozit-build-phone,
.v5-trust-final-actions > a.hozit-build-phone:link,
.v5-trust-final-actions > a.hozit-build-phone:visited {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: #080809 !important;
    border: 2px solid #080809 !important;
}

.v5-trust-final-actions > a.hozit-build-phone:hover,
.v5-trust-final-actions > a.hozit-build-phone:focus-visible {
    color: #ff6800 !important;
    -webkit-text-fill-color: #ff6800 !important;
    background: #fff !important;
    border-color: #ff6800 !important;
}

@media (max-width: 1100px) {
    .v5-trust-overview-grid,
    .v5-trust-heading,
    .v5-trust-final-cta-grid {
        grid-template-columns: 1fr;
    }

    .v5-trust-credential-grid,
    .v5-trust-pillar-grid,
    .v5-trust-security-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .v5-trust-final-actions {
        max-width: 32rem;
    }
}

@media (max-width: 700px) {
    .v5-trust-credential-grid,
    .v5-trust-pillar-grid,
    .v5-trust-security-grid,
    .v5-trust-resource-grid {
        grid-template-columns: 1fr;
    }

    .v5-trust-pillar-card,
    .v5-trust-security-grid article,
    .v5-trust-resource-grid > a {
        min-height: auto;
    }

    .v5-trust-security-grid h3,
    .v5-trust-resource-grid h3 {
        margin-top: 3rem;
    }
}



/* =========================================================
   V5 STATUS CENTRE
   ========================================================= */

.v5-status-overview,
.v5-status-services,
.v5-status-incidents,
.v5-status-maintenance,
.v5-status-definitions {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: #080809;
}

.v5-status-incidents,
.v5-status-definitions {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 106, 0, 0.08),
            transparent 26%
        ),
        #050506;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-status-heading,
.v5-status-support-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-status-heading {
    align-items: end;
    margin-bottom: 4rem;
}

.v5-status-heading h2,
.v5-status-support h2,
.v5-status-overall h2 {
    max-width: 14ch;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-status-heading > p {
    color: rgba(255, 255, 255, 0.57);
    line-height: 1.8;
}

.v5-status-overall {
    padding: clamp(2rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
    background:
        linear-gradient(
            145deg,
            rgba(49, 203, 112, 0.08),
            rgba(255, 255, 255, 0.02)
        );
    border: 1px solid rgba(49, 203, 112, 0.28);
}

.v5-status-overall-icon {
    width: 5rem;
    height: 5rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 1.8rem;
}

.v5-status-overall-icon.is-operational {
    color: #32cb70;
    background: rgba(50, 203, 112, 0.1);
    border: 1px solid rgba(50, 203, 112, 0.4);
}

.v5-status-overall p {
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.7;
}

.v5-status-live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.76rem;
    font-weight: 800;
    white-space: nowrap;
}

.v5-status-live-indicator > span {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: #32cb70;
    box-shadow: 0 0 0 0.35rem rgba(50, 203, 112, 0.12);
}

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

.v5-status-service-card {
    min-width: 0;
    min-height: 10rem;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 3.7rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-status-service-icon {
    width: 3.7rem;
    height: 3.7rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--orange);
    background: rgba(255, 106, 0, 0.08);
    border: 1px solid rgba(255, 106, 0, 0.35);
    font-size: 1.15rem;
}

.v5-status-service-card h3,
.v5-status-notice h3 {
    margin: 0 0 0.4rem;
    color: #fff;
    font-family: var(--font-display);
    line-height: 1.15;
}

.v5-status-service-card h3 {
    font-size: 1.35rem;
}

.v5-status-service-card p,
.v5-status-notice p,
.v5-status-definition-grid p,
.v5-status-support p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.65;
}

.v5-status-badge {
    padding: 0.55rem 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    white-space: nowrap;
}

.v5-status-badge > span {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
}

.v5-status-badge.is-operational {
    color: #6ee7a1;
    background: rgba(50, 203, 112, 0.09);
    border: 1px solid rgba(50, 203, 112, 0.28);
}

.v5-status-badge.is-operational > span {
    background: #32cb70;
}

.v5-status-badge.is-degraded {
    color: #ffd66b;
    background: rgba(255, 190, 46, 0.09);
    border: 1px solid rgba(255, 190, 46, 0.28);
}

.v5-status-badge.is-degraded > span {
    background: #ffbe2e;
}

.v5-status-badge.is-partial {
    color: #ffb46b;
    background: rgba(255, 132, 42, 0.09);
    border: 1px solid rgba(255, 132, 42, 0.28);
}

.v5-status-badge.is-partial > span {
    background: #ff842a;
}

.v5-status-badge.is-major {
    color: #ff8585;
    background: rgba(255, 74, 74, 0.09);
    border: 1px solid rgba(255, 74, 74, 0.28);
}

.v5-status-badge.is-major > span {
    background: #ff4a4a;
}

.v5-status-badge.is-maintenance {
    color: #91b9ff;
    background: rgba(65, 128, 255, 0.09);
    border: 1px solid rgba(65, 128, 255, 0.28);
}

.v5-status-badge.is-maintenance > span {
    background: #4180ff;
}

.v5-status-notice-list {
    display: grid;
    gap: 1rem;
}

.v5-status-notice {
    min-width: 0;
    padding: 2rem;
    display: grid;
    grid-template-columns: 0.5rem minmax(0, 1fr);
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-status-notice-marker {
    width: 0.5rem;
    min-height: 100%;
    border-radius: 999px;
}

.v5-status-notice-marker.is-operational {
    background: #32cb70;
}

.v5-status-notice-marker.is-maintenance {
    background: #4180ff;
}

.v5-status-notice > div:last-child > span {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.v5-status-notice h3 {
    font-size: 1.7rem;
}

.v5-status-definition-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.v5-status-definition-grid article {
    min-width: 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-status-definition-grid p {
    margin-top: 1.4rem;
    font-size: 0.9rem;
}

.v5-status-support {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-status-support h2 {
    color: #080809;
}

.v5-status-support .concept-kicker,
.v5-status-support p {
    color: rgba(0, 0, 0, 0.62);
}

.v5-status-support-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.v5-status-support-actions > a.hozit-build-phone,
.v5-status-support-actions > a.hozit-build-phone:link,
.v5-status-support-actions > a.hozit-build-phone:visited {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: #080809 !important;
    border: 2px solid #080809 !important;
}

.v5-status-support-actions > a.hozit-build-phone:hover,
.v5-status-support-actions > a.hozit-build-phone:focus-visible {
    color: #ff6800 !important;
    -webkit-text-fill-color: #ff6800 !important;
    background: #fff !important;
    border-color: #ff6800 !important;
}

@media (max-width: 1100px) {
    .v5-status-heading,
    .v5-status-support-grid {
        grid-template-columns: 1fr;
    }

    .v5-status-overall {
        grid-template-columns: 5rem minmax(0, 1fr);
    }

    .v5-status-live-indicator {
        grid-column: 1 / -1;
    }

    .v5-status-definition-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v5-status-support-actions {
        max-width: 32rem;
    }
}

@media (max-width: 760px) {
    .v5-status-service-grid,
    .v5-status-definition-grid {
        grid-template-columns: 1fr;
    }

    .v5-status-service-card {
        grid-template-columns: 3.7rem minmax(0, 1fr);
    }

    .v5-status-service-card .v5-status-badge {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .v5-status-overall {
        grid-template-columns: 1fr;
    }
}



/* =========================================================
   V5 LEGAL DOCUMENT FRAMEWORK
   ========================================================= */

.v5-legal-document {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: #080809;
}

.v5-legal-document-meta {
    margin-bottom: 4rem;
    padding: clamp(2rem, 5vw, 4rem);
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);
    align-items: end;
    gap: clamp(2rem, 7vw, 7rem);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.012)
        );
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-legal-document-meta h2 {
    max-width: 13ch;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2.7rem, 5vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.v5-legal-document-meta dl {
    margin: 0;
    display: grid;
}

.v5-legal-document-meta dl > div {
    padding: 1rem 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-legal-document-meta dl > div:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-legal-document-meta dt {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.v5-legal-document-meta dd {
    margin: 0;
    color: #fff;
    font-weight: 800;
    text-align: right;
}

.v5-legal-document-layout {
    display: grid;
    grid-template-columns:
        minmax(14rem, 0.3fr)
        minmax(0, 1fr);
    align-items: start;
    gap: clamp(3rem, 7vw, 7rem);
}

.v5-legal-document-sidebar {
    position: sticky;
    top: 8rem;
}

.v5-legal-document-sidebar-inner {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-legal-document-sidebar strong {
    display: block;
    margin-bottom: 1rem;
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.v5-legal-document-sidebar nav {
    display: grid;
}

.v5-legal-document-sidebar nav a {
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.55);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
    line-height: 1.35;
}

.v5-legal-document-sidebar nav a:hover {
    color: var(--orange);
}

.v5-legal-document-links {
    margin-top: 2rem;
}

.v5-legal-document-links a {
    padding: 0.8rem 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.58);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.84rem;
}

.v5-legal-document-links a:hover {
    color: var(--orange);
}

.v5-legal-document-content {
    min-width: 0;
}

.v5-legal-document-intro {
    margin-bottom: 3rem;
    padding: 2rem;
    border-left: 0.3rem solid var(--orange);
    background: rgba(255, 106, 0, 0.045);
}

.v5-legal-document-intro p {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
    line-height: 1.8;
}

.v5-legal-document-intro p:last-child {
    margin-bottom: 0;
}

.v5-legal-document-section {
    padding: 3rem 0;
    scroll-margin-top: 9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-legal-document-section:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-legal-section-number {
    display: block;
    margin-bottom: 1rem;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 900;
}

.v5-legal-document-section h2 {
    max-width: 20ch;
    margin: 0 0 1.5rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.v5-legal-document-section h3 {
    margin: 2.5rem 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.v5-legal-document-section p,
.v5-legal-document-section li {
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.8;
}

.v5-legal-document-section ul,
.v5-legal-document-section ol {
    margin: 1.5rem 0;
    padding-left: 1.4rem;
}

.v5-legal-document-section li {
    margin-bottom: 0.7rem;
    padding-left: 0.45rem;
}

.v5-legal-document-section li::marker {
    color: var(--orange);
    font-weight: 900;
}

.v5-legal-subsection {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.v5-legal-document-notice {
    margin-top: 3rem;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 1rem;
    background: rgba(255, 106, 0, 0.06);
    border: 1px solid rgba(255, 106, 0, 0.28);
}

.v5-legal-document-notice i {
    color: var(--orange);
    font-size: 1.25rem;
}

.v5-legal-document-notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
}

.v5-legal-document-cta {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--orange);
}

.v5-legal-document-cta-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);
    gap: clamp(3rem, 8vw, 8rem);
}

.v5-legal-document-cta h2 {
    max-width: 14ch;
    margin: 0;
    color: #080809;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.v5-legal-document-cta .concept-kicker {
    color: rgba(0, 0, 0, 0.58);
}

.v5-legal-document-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.v5-legal-document-cta-actions > a.hozit-build-phone,
.v5-legal-document-cta-actions > a.hozit-build-phone:link,
.v5-legal-document-cta-actions > a.hozit-build-phone:visited {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: #080809 !important;
    border: 2px solid #080809 !important;
}

.v5-legal-document-cta-actions > a.hozit-build-phone:hover,
.v5-legal-document-cta-actions > a.hozit-build-phone:focus-visible {
    color: #ff6800 !important;
    -webkit-text-fill-color: #ff6800 !important;
    background: #fff !important;
    border-color: #ff6800 !important;
}

@media (max-width: 1000px) {
    .v5-legal-document-meta,
    .v5-legal-document-layout,
    .v5-legal-document-cta-grid {
        grid-template-columns: 1fr;
    }

    .v5-legal-document-sidebar {
        position: static;
    }

    .v5-legal-document-sidebar nav {
        grid-template-columns: repeat(
            2,
            minmax(0, 1fr)
        );
        column-gap: 1rem;
    }

    .v5-legal-document-cta-actions {
        max-width: 32rem;
    }
}

@media (max-width: 650px) {
    .v5-legal-document-sidebar nav {
        grid-template-columns: 1fr;
    }

    .v5-legal-document-meta dl > div {
        grid-template-columns: 1fr;
    }

    .v5-legal-document-meta dd {
        text-align: left;
    }
}



/* =========================================================
   V5 RAW LEGAL DOCUMENT CONTENT
   ========================================================= */

.v5-legal-raw-content > h2 {
    position: relative;
    margin: 0;
    padding: 3rem 0 1.5rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    scroll-margin-top: 9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-legal-raw-content > h2::before {
    content: attr(data-section-number);
    display: block;
    margin-bottom: 1rem;
    color: var(--orange);
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: normal;
}

.v5-legal-raw-content > h3 {
    margin: 2.5rem 0 1rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1.15;
}

.v5-legal-raw-content > p,
.v5-legal-raw-content > ul li,
.v5-legal-raw-content > ol li,
.v5-legal-raw-content address {
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.8;
}

.v5-legal-raw-content > p {
    margin: 0 0 1.25rem;
}

.v5-legal-raw-content > ul,
.v5-legal-raw-content > ol {
    margin: 1.5rem 0 2rem;
    padding-left: 1.5rem;
}

.v5-legal-raw-content li {
    margin-bottom: 0.7rem;
    padding-left: 0.4rem;
}

.v5-legal-raw-content li::marker {
    color: var(--orange);
    font-weight: 900;
}

.v5-legal-raw-content address {
    margin: 1.5rem 0 3rem;
    padding: 1.5rem;
    font-style: normal;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v5-legal-raw-content a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 0.22em;
}

.v5-legal-raw-content strong {
    color: rgba(255, 255, 255, 0.86);
}

.v5-legal-raw-content > *:last-child {
    margin-bottom: 0;
}

