: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;
    }
}
