/* ==========================================================================
   SECTION: Main Hero V3
   PHP FILE: template-parts/home/new/content-banner-v3.php
   ========================================================================== */

#iqt-main-hero-v3 {
    --iqt-hero-accent: #8fb4ff;
    --iqt-hero-accent-soft: rgba(143, 180, 255, 0.35);

    position: relative;
    display: flex;
    min-height: 100vh;
    align-items: center;
    overflow: hidden;
    padding: 118px 0 72px;
    background: #061541;
    color: #ffffff;
}

#iqt-main-hero-v3,
#iqt-main-hero-v3 * {
    box-sizing: border-box;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__ambient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 72% 40%,
            var(--iqt-hero-accent-soft) 0%,
            transparent 54%
        );
    opacity: 0.62;
    transition: background 0.4s ease;
    animation: iqt-hero-glow-shift 16s ease-in-out infinite;
    pointer-events: none;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__container {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 40px), 1240px);
    margin: 0 auto;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 76px;
    min-height: 650px;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: #ffffff;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__eyebrow-dot {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: var(--iqt-hero-accent);
    box-shadow: 0 0 12px var(--iqt-hero-accent);
    transition:
        background 0.4s ease,
        box-shadow 0.4s ease;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin: 28px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff !important;
    font-size: clamp(50px, 4.25vw, 68px);
    font-weight: 800;
    line-height: 1.01;
    letter-spacing: -0.045em;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__title::before,
#iqt-main-hero-v3 .iqt-main-hero-v3__title::after {
    display: none !important;
    content: none !important;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__title-line {
    display: block;
    margin: 0;
    padding: 0;
    color: #ffffff !important;
    line-height: 1.01;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__typed-line {
    display: flex;
    min-height: 1.01em;
    align-items: baseline;
    margin: 0;
    padding: 0;
    color: var(--iqt-hero-accent) !important;
    line-height: 1.01;
    text-shadow:
        0 0 28px var(--iqt-hero-accent-soft),
        0 0 58px var(--iqt-hero-accent-soft),
        0 0 90px var(--iqt-hero-accent-soft);
    transition:
        color 0.4s ease,
        text-shadow 0.4s ease;
}

#iqt-main-hero-v3
    .iqt-main-hero-v3__typed-line
    [data-iqt-typed-text] {
    color: var(--iqt-hero-accent) !important;
    transition: color 0.4s ease;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__caret {
    display: inline-block;
    width: 3px;
    height: 0.82em;
    margin-left: 4px;
    transform: translateY(0.04em);
    background: var(--iqt-hero-accent) !important;
    box-shadow: 0 0 12px var(--iqt-hero-accent-soft);
    animation: iqt-hero-caret-blink 1s steps(1) infinite;
    transition:
        background 0.4s ease,
        box-shadow 0.4s ease;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__subhead {
    max-width: 560px;
    margin: 34px 0 0;
    padding: 0;
    color: #ffffff !important;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none !important;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.4s ease;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__button:hover {
    transform: translateY(-2px);
    text-decoration: none !important;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__button--primary {
    padding: 14px 34px;
    border: 0;
    background: var(--iqt-hero-accent);
    color: #07122a !important;
    box-shadow:
        0 12px 34px -10px var(--iqt-hero-accent-soft),
        inset 0 0 0 1px var(--iqt-hero-accent-soft);
    font-size: 16px;
    font-weight: 700;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__button--secondary {
    padding: 13px 30px;
    border: 1px solid rgba(255, 255, 255, 0.23);
    background: rgba(255, 255, 255, 0.055);
    color: #ffffff !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-size: 15px;
    font-weight: 700;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__button--secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.11);
    color: #ffffff !important;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__trust {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    flex-wrap: nowrap;
    align-items: center;
    gap: 24px;
    margin-top: auto;
    padding: 16px 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

#iqt-main-hero-v3 .iqt-main-hero-v3__trust-item {
    display: flex;
    flex: 0 0 auto;
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__trust-item strong {
    margin: 0;
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__trust-item span {
    margin: 0;
    color: #ffffff !important;
    opacity: 0.7;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__trust-divider {
    width: 1px;
    height: 24px;
    flex: 0 0 1px;
    background: rgba(255, 255, 255, 0.15);
}

#iqt-main-hero-v3 .iqt-main-hero-v3__visual {
    display: grid;
    min-width: 0;
    min-height: 650px;
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 26px;
    opacity: 0;
    transform: scale(0.97);
    transition:
        opacity 0.65s ease,
        transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#iqt-main-hero-v3 .iqt-main-hero-v3__visual.is-visible {
    opacity: 1;
    transform: scale(1);
}

#iqt-main-hero-v3 .iqt-main-hero-v3__rotator-wrap {
    display: flex;
    min-height: 0;
    align-items: center;
    justify-content: flex-end;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__rotator {
    position: relative;
    width: 100%;
    max-width: 540px;
    aspect-ratio: 1 / 1;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__halo,
#iqt-main-hero-v3 .iqt-main-hero-v3__video {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 550ms ease-out;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__halo {
    transform: scale(1.08);
    pointer-events: none;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__halo.is-active,
#iqt-main-hero-v3 .iqt-main-hero-v3__video.is-active {
    opacity: 1;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: screen;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__video.is-managed {
    transform: translateY(-4%) scale(0.72);
    -webkit-mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 90%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 90%,
        transparent 100%
    );
}

#iqt-main-hero-v3 .iqt-main-hero-v3__stat-card {
    position: relative;
    width: 100%;
    max-width: 460px;
    justify-self: end;
    align-self: end;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 17px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.075) 0%,
        rgba(255, 255, 255, 0.025) 100%
    );
    box-shadow:
        0 20px 60px -20px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 40px var(--iqt-hero-accent-soft);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__progress-track {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

#iqt-main-hero-v3 .iqt-main-hero-v3__progress-bar {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--iqt-hero-accent);
    box-shadow:
        0 0 8px var(--iqt-hero-accent-soft),
        0 0 16px var(--iqt-hero-accent);
    transition:
        background 0.4s ease,
        box-shadow 0.4s ease;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__stat-wash {
    position: absolute;
    inset: 0;
    opacity: 0.56;
    pointer-events: none;
    transition: background 0.4s ease;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__stat-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 74px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    text-align: center;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__stat-value {
    margin: 0;
    color: var(--iqt-hero-accent) !important;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    text-shadow: 0 0 24px var(--iqt-hero-accent-soft);
    transition:
        color 0.4s ease,
        text-shadow 0.4s ease;
}

#iqt-main-hero-v3 .iqt-main-hero-v3__stat-label {
    margin-top: 7px;
    color: #ffffff !important;
    opacity: 0.72;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
}

#iqt-main-hero-v3 .iqt-hero-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.55s ease,
        transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#iqt-main-hero-v3 .iqt-hero-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes iqt-hero-progress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes iqt-hero-caret-blink {
    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

@keyframes iqt-hero-glow-shift {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-3%, 3%, 0);
    }
}

@media (max-width: 1100px) {
    #iqt-main-hero-v3 .iqt-main-hero-v3__grid {
        gap: 46px;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__title {
        font-size: clamp(46px, 5vw, 60px);
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__trust {
        gap: 16px;
        padding-inline: 18px;
    }
}

@media (max-width: 1023px) {
    #iqt-main-hero-v3 {
        min-height: auto;
        padding: 112px 0 72px;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__grid {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 58px;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__copy,
    #iqt-main-hero-v3 .iqt-main-hero-v3__visual {
        min-height: 0;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__trust {
        margin-top: 44px;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__visual {
        grid-template-rows: auto auto;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__rotator-wrap {
        justify-content: center;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__stat-card {
        max-width: 540px;
        justify-self: center;
    }
}

@media (max-width: 767px) {
    #iqt-main-hero-v3 {
        padding: 104px 0 60px;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__container {
        width: min(calc(100% - 28px), 1240px);
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__title {
        margin-top: 24px;
        font-size: clamp(39px, 11vw, 50px);
        line-height: 1.03;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__title-line,
    #iqt-main-hero-v3 .iqt-main-hero-v3__typed-line {
        line-height: 1.03;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__typed-line {
        min-height: 1.03em;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__subhead {
        margin-top: 28px;
        font-size: 16px;
        line-height: 1.65;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__actions {
        margin-top: 32px;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__button {
        flex: 1 1 210px;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__trust {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
        padding: 14px 12px;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__trust-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__trust-item strong {
        font-size: 16px;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__trust-item span {
        font-size: 9px;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__trust-divider {
        height: 28px;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__rotator {
        max-width: 460px;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__stat-card {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 440px) {
    #iqt-main-hero-v3 .iqt-main-hero-v3__eyebrow {
        padding-inline: 12px;
        font-size: 8px;
        letter-spacing: 0.09em;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__title {
        font-size: 37px;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__trust {
        gap: 6px;
        padding-inline: 10px;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__trust-item strong {
        font-size: 14px;
    }

    #iqt-main-hero-v3 .iqt-main-hero-v3__trust-item span {
        font-size: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #iqt-main-hero-v3 *,
    #iqt-main-hero-v3 *::before,
    #iqt-main-hero-v3 *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* =========================================================
   IQT Strategic IT Support Section
========================================================= */

:root {
    --iqt-strategic-primary: 222 89% 56%;
    --iqt-strategic-blue-glow: 210 100% 66%;
    --iqt-strategic-background: 0 0% 100%;
    --iqt-strategic-foreground: 220 26% 14%;
    --iqt-strategic-muted-foreground: 220 10% 46%;
    --iqt-strategic-border: 220 13% 91%;
}

/* Section */
.iqt-strategic-support-section {
    position: relative;
    background: hsl(var(--iqt-strategic-background));
    overflow: hidden;
}

.iqt-strategic-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 20px;
}

@media (min-width: 1024px) {
    .iqt-strategic-container {
        padding: 112px 32px;
    }
}

/* Grid */
.iqt-strategic-grid {
    display: grid;
    gap: 64px;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .iqt-strategic-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 112px;
    }
}

/* Left column */
.iqt-strategic-left {
    max-width: 470px;
}

.iqt-strategic-title {
    margin: 0;
    color: hsl(var(--iqt-strategic-foreground));
    font-size: 40px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.iqt-strategic-title span {
    display: block;
}

.iqt-strategic-blue {
    color: hsl(var(--iqt-strategic-primary));
}

.iqt-strategic-description {
    margin: 24px 0 0;
    color: hsl(var(--iqt-strategic-muted-foreground));
    font-size: 16px;
    line-height: 1.75;
}

.iqt-strategic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 32px;
    padding: 0 22px;
    border-radius: 999px;
    color: #ffffff !important;
    background: hsl(var(--iqt-strategic-primary));
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow:
        0 14px 32px hsl(var(--iqt-strategic-primary) / 0.24),
        0 0 0 1px hsl(var(--iqt-strategic-primary) / 0.16);
    transition: all 280ms ease;
}

.iqt-strategic-btn:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow:
        0 20px 44px hsl(var(--iqt-strategic-primary) / 0.34),
        0 0 0 1px hsl(var(--iqt-strategic-primary) / 0.22);
}

/* Right column rows */
.iqt-strategic-rows {
    display: flex;
    flex-direction: column;
}

.iqt-strategic-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 0;
    opacity: 0;
    transition:
        opacity 500ms ease,
        transform 500ms ease;
    transition-delay: calc(var(--row-index) * 200ms);
    transform: translateY(8px);
}

.iqt-strategic-rows.is-in-view .iqt-strategic-row {
    opacity: 1;
    transform: translateY(0);
}

/* Accent bar */
.iqt-strategic-bar {
    width: 3px;
    align-self: stretch;
    flex-shrink: 0;
    border-radius: 999px;
    background: hsl(var(--iqt-strategic-border));
    box-shadow: none;
    transition:
        background 700ms ease,
        box-shadow 700ms ease;
    transition-delay: calc(var(--row-index) * 600ms);
}

.iqt-strategic-row.is-lit .iqt-strategic-bar {
    background: linear-gradient(
        180deg,
        hsl(var(--iqt-strategic-primary)),
        hsl(var(--iqt-strategic-blue-glow))
    );
    box-shadow:
        0 0 8px hsl(var(--iqt-strategic-primary) / 0.4),
        0 0 20px hsl(var(--iqt-strategic-primary) / 0.15);
}

/* Text */
.iqt-strategic-text {
    flex: 1;
    min-width: 0;
}

.iqt-strategic-text h3 {
    margin: 0 0 8px;
    color: hsl(var(--iqt-strategic-foreground));
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.iqt-strategic-text p {
    margin: 0;
    color: hsl(var(--iqt-strategic-muted-foreground));
    font-size: 14px;
    line-height: 1.75;
}

/* Icon tile */
.iqt-strategic-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--iqt-strategic-muted-foreground));
    background: hsl(var(--iqt-strategic-border) / 0.5);
    transition:
        background 700ms ease,
        color 700ms ease,
        transform 700ms ease,
        box-shadow 700ms ease;
    transition-delay: calc(var(--row-index) * 600ms);
}

.iqt-strategic-row.is-lit .iqt-strategic-icon {
    color: hsl(var(--iqt-strategic-primary));
    background: hsl(var(--iqt-strategic-primary) / 0.1);
    box-shadow:
        0 14px 36px -22px hsl(var(--iqt-strategic-primary) / 0.8),
        inset 0 1px 0 hsl(var(--iqt-strategic-background) / 0.85);
}

.iqt-strategic-icon span {
    width: 26px;
    height: 26px;
    display: block;
    background: currentColor;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

/* Activity icon */
.iqt-icon-activity span {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M22 12h-4l-3 9L9 3l-3 9H2'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M22 12h-4l-3 9L9 3l-3 9H2'/%3E%3C/svg%3E");
}

/* Shield icon */
.iqt-icon-shield span {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.7 8.9a1 1 0 0 1-.6 0C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.2-2.6a1.3 1.3 0 0 1 1.6 0C14.5 3.8 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.7 8.9a1 1 0 0 1-.6 0C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.2-2.6a1.3 1.3 0 0 1 1.6 0C14.5 3.8 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3C/svg%3E");
}

/* TrendingUp icon */
.iqt-icon-trending span {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M16 7h6v6'/%3E%3Cpath d='m22 7-8.5 8.5-5-5L2 17'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M16 7h6v6'/%3E%3Cpath d='m22 7-8.5 8.5-5-5L2 17'/%3E%3C/svg%3E");
}

/* Responsive */
@media (min-width: 640px) {
    .iqt-strategic-title {
        font-size: 52px;
    }
}

@media (max-width: 1023px) {
    .iqt-strategic-left {
        max-width: 720px;
    }

    .iqt-strategic-grid {
        gap: 48px;
    }
}

@media (max-width: 767px) {
    .iqt-strategic-container {
        padding: 72px 20px;
    }

    .iqt-strategic-title {
        font-size: 38px;
    }

    .iqt-strategic-row {
        gap: 16px;
        padding: 26px 0;
    }

    .iqt-strategic-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        border-radius: 16px;
    }

    .iqt-strategic-icon span {
        width: 23px;
        height: 23px;
    }

    .iqt-strategic-text h3 {
        font-size: 18px;
    }

    .iqt-strategic-text p {
        font-size: 13.5px;
    }
}

/* =========================================================
   Strategic IT Support Section Fixes
   Fix icon backgrounds + text colors
   Paste at the VERY BOTTOM of your CSS
========================================================= */

/* Main section background */
.iqt-strategic-support-section {
    background: #ffffff !important;
}

/* Left headline colors */
.iqt-strategic-title,
.iqt-strategic-title span {
    color: #171f2f !important;
}

.iqt-strategic-title .iqt-strategic-blue {
    color: #245BFF !important;
}

/* Left paragraph */
.iqt-strategic-description {
    color: #5f6f85 !important;
    font-weight: 400 !important;
}

/* Right-side row titles */
.iqt-strategic-text h3 {
    color: #061224 !important;
    font-weight: 800 !important;
}

/* Right-side paragraph text */
.iqt-strategic-text p {
    color: #5f6f85 !important;
    font-weight: 400 !important;
}

/* Accent bars */
.iqt-strategic-row.is-lit .iqt-strategic-bar {
    background: linear-gradient(
        180deg,
        #245BFF 0%,
        #60A5FA 100%
    ) !important;
    box-shadow:
        0 0 8px rgba(36, 91, 255, 0.4),
        0 0 20px rgba(36, 91, 255, 0.15) !important;
}

/* =========================================================
   IMPORTANT FIX:
   Prevent global icon-mask CSS from turning the whole tile
   into an icon shape. This is why the first two backgrounds
   were disappearing.
========================================================= */

.iqt-strategic-icon,
.iqt-strategic-icon.iqt-icon-activity,
.iqt-strategic-icon.iqt-icon-shield,
.iqt-strategic-icon.iqt-icon-trending {
    width: 56px !important;
    height: 56px !important;
    flex: 0 0 56px !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #eaf0ff !important;
    background-color: #eaf0ff !important;
    color: #245BFF !important;

    mask-image: none !important;
    -webkit-mask-image: none !important;
    mask: none !important;
    -webkit-mask: none !important;

    box-shadow: none !important;
    opacity: 1 !important;
}

/* Unlit state */
.iqt-strategic-row:not(.is-lit) .iqt-strategic-icon,
.iqt-strategic-row:not(.is-lit) .iqt-strategic-icon.iqt-icon-activity,
.iqt-strategic-row:not(.is-lit) .iqt-strategic-icon.iqt-icon-shield,
.iqt-strategic-row:not(.is-lit) .iqt-strategic-icon.iqt-icon-trending {
    background: #edf2ff !important;
    background-color: #edf2ff !important;
    color: #dbe5f7 !important;
    opacity: 1 !important;
}

/* Lit state */
.iqt-strategic-row.is-lit .iqt-strategic-icon,
.iqt-strategic-row.is-lit .iqt-strategic-icon.iqt-icon-activity,
.iqt-strategic-row.is-lit .iqt-strategic-icon.iqt-icon-shield,
.iqt-strategic-row.is-lit .iqt-strategic-icon.iqt-icon-trending {
    background: #eaf0ff !important;
    background-color: #eaf0ff !important;
    color: #245BFF !important;
    box-shadow:
        0 14px 36px -24px rgba(36, 91, 255, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.75) !important;
}

/* Make the inner SVG-mask icon visible */
.iqt-strategic-icon span {
    width: 26px !important;
    height: 26px !important;
    display: block !important;
    background: currentColor !important;
    background-color: currentColor !important;

    opacity: 1 !important;

    mask-repeat: no-repeat !important;
    mask-position: center !important;
    mask-size: contain !important;

    -webkit-mask-repeat: no-repeat !important;
    -webkit-mask-position: center !important;
    -webkit-mask-size: contain !important;
}

/* Activity icon */
.iqt-strategic-icon.iqt-icon-activity span {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M22 12h-4l-3 9L9 3l-3 9H2'/%3E%3C/svg%3E") !important;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M22 12h-4l-3 9L9 3l-3 9H2'/%3E%3C/svg%3E") !important;
}

/* Shield icon */
.iqt-strategic-icon.iqt-icon-shield span {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.7 8.9a1 1 0 0 1-.6 0C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.2-2.6a1.3 1.3 0 0 1 1.6 0C14.5 3.8 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3C/svg%3E") !important;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.7 8.9a1 1 0 0 1-.6 0C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.2-2.6a1.3 1.3 0 0 1 1.6 0C14.5 3.8 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3C/svg%3E") !important;
}

/* Trending icon */
.iqt-strategic-icon.iqt-icon-trending span {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M16 7h6v6'/%3E%3Cpath d='m22 7-8.5 8.5-5-5L2 17'/%3E%3C/svg%3E") !important;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M16 7h6v6'/%3E%3Cpath d='m22 7-8.5 8.5-5-5L2 17'/%3E%3C/svg%3E") !important;
}

/* Match reference spacing a bit better */
.iqt-strategic-row {
    gap: 28px !important;
    padding: 30px 0 !important;
}

.iqt-strategic-text h3 {
    margin-bottom: 10px !important;
}

.iqt-strategic-text p {
    max-width: 620px !important;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .iqt-strategic-icon,
    .iqt-strategic-icon.iqt-icon-activity,
    .iqt-strategic-icon.iqt-icon-shield,
    .iqt-strategic-icon.iqt-icon-trending {
        width: 50px !important;
        height: 50px !important;
        flex-basis: 50px !important;
        border-radius: 16px !important;
    }

    .iqt-strategic-icon span {
        width: 23px !important;
        height: 23px !important;
    }

    .iqt-strategic-row {
        gap: 18px !important;
    }
}

/* =========================================================
   Fix: layout for .iqt-hero-visual-nondesktop
   (matches the actual PHP markup — pill-1..pill-8 transforms
   from the desktop layout were leaking through and causing overlap)
========================================================= */

.iqt-hero-visual-nondesktop {
    display: none;
}

@media (max-width: 1023px) {
    .iqt-hero-visual-desktop {
        display: none !important;
    }

    .iqt-hero-visual-nondesktop {
        display: flex;
        flex-direction: column;
        gap: 18px;
        width: 100%;
        max-width: 390px;
        margin: 0 auto;
        padding: 4px 0 8px;
    }

    .iqt-nondesktop-pill-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 10px;
        width: 100%;
    }

    .iqt-nondesktop-pill {
        position: relative;
        display: flex;
        justify-content: center;
        width: 100%;
        min-width: 0;
        /* kill the leftover desktop pill-N transforms */
        transform: none !important;
    }

    .iqt-nondesktop-pill .iqt-pill-card {
        width: max-content;
        max-width: 155px;
        gap: 6px;
        padding: 6px 8px;
        border-radius: 9px;
        animation: iqt-mobile-notification-float 4.6s ease-in-out infinite;
    }

    .iqt-nondesktop-pill-row-top > .iqt-nondesktop-pill:nth-child(2) .iqt-pill-card,
    .iqt-nondesktop-pill-row-bottom > .iqt-nondesktop-pill:nth-child(2) .iqt-pill-card {
        animation-delay: 0.45s;
        animation-duration: 5.1s;
    }

    .iqt-nondesktop-pill-row-top > .iqt-nondesktop-pill:nth-child(3) .iqt-pill-card,
    .iqt-nondesktop-pill-row-bottom > .iqt-nondesktop-pill:nth-child(3) .iqt-pill-card {
        animation-delay: 0.9s;
        animation-duration: 5.6s;
    }

    .iqt-nondesktop-pill-row-top > .iqt-nondesktop-pill:nth-child(4) .iqt-pill-card,
    .iqt-nondesktop-pill-row-bottom > .iqt-nondesktop-pill:nth-child(4) .iqt-pill-card {
        animation-delay: 1.25s;
        animation-duration: 4.9s;
    }

    .iqt-nondesktop-pill .iqt-pill-icon {
        width: 12px;
        height: 12px;
        flex: 0 0 12px;
    }

    .iqt-nondesktop-pill .iqt-pill-text strong {
        font-size: 9px;
    }

    .iqt-nondesktop-pill .iqt-pill-text small {
        margin-top: 2px;
        font-size: 7px;
    }

    .iqt-nondesktop-dashboard {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 4px 0;
    }

    .iqt-live-dashboard-nondesktop {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: min(92%, 330px) !important;
        max-width: 330px !important;
        min-width: 0 !important;
        margin: 0 auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        filter: none !important;
        transform: none !important;
    }

    .iqt-live-dashboard-nondesktop .iqt-dashboard-card {
        transform: none !important;
        width: 100%;
        padding: 10px;
        border-radius: 15px;
    }
}

@media (max-width: 389px) {
    .iqt-hero-visual-nondesktop {
        gap: 15px;
    }

    .iqt-nondesktop-pill-row {
        gap: 12px 6px;
    }

    .iqt-nondesktop-pill .iqt-pill-card {
        max-width: 142px;
        padding: 5px 7px;
    }

    .iqt-live-dashboard-nondesktop {
        width: min(94%, 305px) !important;
        max-width: 305px !important;
    }
}

/* =========================================================
   Mobile/Tablet Bottom Notification Row
   Endpoint Guard removed only below desktop
========================================================= */

@media (max-width: 1023px) {
    .iqt-mobile-notification-grid-bottom,
    .iqt-nondesktop-pill-row-bottom,
    .iqt-nd-pill-row-bottom {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        max-width: 560px !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }
}

@media (max-width: 767px) {
    .iqt-mobile-notification-grid-bottom,
    .iqt-nondesktop-pill-row-bottom,
    .iqt-nd-pill-row-bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        max-width: 390px !important;
    }

    .iqt-mobile-notification-grid-bottom > :last-child,
    .iqt-nondesktop-pill-row-bottom > :last-child,
    .iqt-nd-pill-row-bottom > :last-child {
        grid-column: 1 / -1 !important;
        justify-self: center !important;
        width: 50% !important;
    }
}

@media (max-width: 389px) {
    .iqt-mobile-notification-grid-bottom > :last-child,
    .iqt-nondesktop-pill-row-bottom > :last-child,
    .iqt-nd-pill-row-bottom > :last-child {
        width: 58% !important;
    }
}

/* =========================================================
   FINAL IQT HERO PATCH
   - Three notifications above dashboard
   - Three notifications below dashboard
   - Network Health and Endpoint Guard hidden below desktop
   - Reliable inline dashboard SVG icons
   - Correct mobile spacing
   - No desktop first-load wrapper scale jitter
========================================================= */

/* The desktop wrapper should not scale in on page load. */
@media (min-width: 1024px) {
    .iqt-hero-visual-desktop {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .iqt-hero-visual-desktop .iqt-floating-pill {
        transition: none !important;
    }
}

/* Inline SVG dashboard icons */
.iqt-dashboard-svg {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    overflow: visible !important;
    color: currentColor !important;
    opacity: 1 !important;
    visibility: visible !important;
    fill: none !important;
    stroke: currentColor !important;
}

.iqt-dashboard-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 22px !important;
    height: 22px !important;
    flex: 0 0 22px !important;
    padding: 5px !important;
    color: #245bff !important;
    background: rgba(36, 91, 255, 0.10) !important;
    border-radius: 999px !important;
    mask: none !important;
    -webkit-mask: none !important;
}

.iqt-dashboard-icon::before {
    display: none !important;
    content: none !important;
}

.iqt-kpi-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 16px !important;
    height: 16px !important;
    flex: 0 0 16px !important;
    color: #245bff !important;
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    mask: none !important;
    -webkit-mask: none !important;
}

.iqt-alert-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 5px !important;
    mask: none !important;
    -webkit-mask: none !important;
}

.iqt-alert-badge::before {
    display: none !important;
    content: none !important;
}

.iqt-alert-badge .iqt-dashboard-svg {
    width: 11px !important;
    height: 11px !important;
}

/* Everything below desktop */
@media (max-width: 1023px) {
    /* Hide these two services regardless of any stale duplicate markup. */
    .iqt-hero-absorb-section .pill-4,
    .iqt-hero-absorb-section .pill-7 {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    .iqt-hero-visual-mobile {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 720px !important;
        margin: 0 auto !important;
        gap: 30px !important;
        padding: 10px 0 14px !important;
    }

    .iqt-mobile-notification-grid {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        align-items: center !important;
        justify-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 680px !important;
        margin: 0 auto !important;
    }

    .iqt-mobile-notification {
        position: relative !important;
        inset: auto !important;
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        filter: none !important;
        transform: none !important;
    }

    .iqt-mobile-notification .iqt-pill-card {
        width: 100% !important;
        max-width: 175px !important;
        min-height: 54px !important;
        padding: 8px 10px !important;
        gap: 7px !important;
        white-space: normal !important;
    }

    .iqt-mobile-notification .iqt-pill-text {
        min-width: 0 !important;
    }

    .iqt-mobile-notification .iqt-pill-text strong,
    .iqt-mobile-notification .iqt-pill-text small {
        white-space: normal !important;
    }

    .iqt-mobile-dashboard-wrap {
        position: relative !important;
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 6px 0 !important;
    }

    .iqt-live-dashboard-mobile {
        position: relative !important;
        inset: auto !important;
        width: min(90%, 440px) !important;
        max-width: 440px !important;
        min-width: 0 !important;
        margin: 0 auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        filter: none !important;
        transform: none !important;
    }

    .iqt-live-dashboard-mobile .iqt-dashboard-card {
        width: 100% !important;
        transform: none !important;
    }
}

/* Phone layout: still one row of three above and one row of three below */
@media (max-width: 767px) {
    .iqt-hero-grid {
        gap: 42px !important;
    }

    .iqt-hero-visual-mobile {
        max-width: 420px !important;
        gap: 28px !important;
        padding-top: 12px !important;
    }

    .iqt-mobile-notification-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 7px !important;
        max-width: 400px !important;
    }

    .iqt-mobile-notification .iqt-pill-card {
        width: 100% !important;
        max-width: 126px !important;
        min-height: 50px !important;
        padding: 7px 6px !important;
        gap: 5px !important;
        border-radius: 10px !important;
    }

    .iqt-mobile-notification .iqt-pill-icon {
        width: 12px !important;
        height: 12px !important;
        flex: 0 0 12px !important;
    }

    .iqt-mobile-notification .iqt-pill-text strong {
        font-size: 8.2px !important;
        line-height: 1.12 !important;
    }

    .iqt-mobile-notification .iqt-pill-text small {
        margin-top: 2px !important;
        font-size: 6.5px !important;
        line-height: 1.12 !important;
    }

    .iqt-mobile-dashboard-wrap {
        padding: 4px 0 !important;
    }

    .iqt-live-dashboard-mobile {
        width: min(94%, 350px) !important;
        max-width: 350px !important;
    }

    .iqt-live-dashboard-mobile .iqt-dashboard-card {
        padding: 11px !important;
        border-radius: 17px !important;
    }

    .iqt-dashboard-title {
        gap: 7px !important;
        font-size: 11px !important;
    }

    .iqt-dashboard-icon {
        width: 21px !important;
        height: 21px !important;
        flex-basis: 21px !important;
        padding: 5px !important;
    }

    .iqt-kpi-grid {
        gap: 6px !important;
        margin-top: 12px !important;
    }

    .iqt-kpi-card {
        min-height: 42px !important;
        gap: 4px !important;
        padding: 6px 3px !important;
    }

    .iqt-kpi-icon {
        width: 15px !important;
        height: 15px !important;
        flex-basis: 15px !important;
    }

    .iqt-kpi-card strong {
        font-size: 8px !important;
    }

    .iqt-alert-list {
        gap: 7px !important;
        margin-top: 12px !important;
    }

    .iqt-alert-row {
        grid-template-columns: 22px 1fr 6px !important;
        gap: 7px !important;
        min-height: 38px !important;
        padding: 7px 8px !important;
    }

    .iqt-alert-badge {
        width: 22px !important;
        height: 22px !important;
        padding: 5px !important;
    }

    .iqt-alert-row strong {
        font-size: 8.2px !important;
    }

    .iqt-alert-row small {
        font-size: 7.2px !important;
    }
}

@media (max-width: 389px) {
    .iqt-mobile-notification-grid {
        gap: 5px !important;
    }

    .iqt-mobile-notification .iqt-pill-card {
        max-width: 116px !important;
        min-height: 48px !important;
        padding: 6px 5px !important;
    }

    .iqt-mobile-notification .iqt-pill-text strong {
        font-size: 7.6px !important;
    }

    .iqt-mobile-notification .iqt-pill-text small {
        font-size: 6px !important;
    }

    .iqt-live-dashboard-mobile {
        width: min(96%, 330px) !important;
        max-width: 330px !important;
    }
}


/* =========================================================
   Strategic IT Support Section Fixes
   Fix icon backgrounds + text colors
   Paste at the VERY BOTTOM of your CSS
========================================================= */

/* Main section background */
.iqt-strategic-support-section {
    background: #ffffff !important;
}

/* Left headline colors */
.iqt-strategic-title,
.iqt-strategic-title span {
    color: #171f2f !important;
}

.iqt-strategic-title .iqt-strategic-blue {
    color: #245BFF !important;
}

/* Left paragraph */
.iqt-strategic-description {
    color: #5f6f85 !important;
    font-weight: 400 !important;
}

/* Right-side row titles */
.iqt-strategic-text h3 {
    color: #061224 !important;
    font-weight: 800 !important;
}

/* Right-side paragraph text */
.iqt-strategic-text p {
    color: #5f6f85 !important;
    font-weight: 400 !important;
}

/* Accent bars */
.iqt-strategic-row.is-lit .iqt-strategic-bar {
    background: linear-gradient(
        180deg,
        #245BFF 0%,
        #60A5FA 100%
    ) !important;
    box-shadow:
        0 0 8px rgba(36, 91, 255, 0.4),
        0 0 20px rgba(36, 91, 255, 0.15) !important;
}

/* =========================================================
   IMPORTANT FIX:
   Prevent global icon-mask CSS from turning the whole tile
   into an icon shape. This is why the first two backgrounds
   were disappearing.
========================================================= */

.iqt-strategic-icon,
.iqt-strategic-icon.iqt-icon-activity,
.iqt-strategic-icon.iqt-icon-shield,
.iqt-strategic-icon.iqt-icon-trending {
    width: 56px !important;
    height: 56px !important;
    flex: 0 0 56px !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #eaf0ff !important;
    background-color: #eaf0ff !important;
    color: #245BFF !important;

    mask-image: none !important;
    -webkit-mask-image: none !important;
    mask: none !important;
    -webkit-mask: none !important;

    box-shadow: none !important;
    opacity: 1 !important;
}

/* Unlit state */
.iqt-strategic-row:not(.is-lit) .iqt-strategic-icon,
.iqt-strategic-row:not(.is-lit) .iqt-strategic-icon.iqt-icon-activity,
.iqt-strategic-row:not(.is-lit) .iqt-strategic-icon.iqt-icon-shield,
.iqt-strategic-row:not(.is-lit) .iqt-strategic-icon.iqt-icon-trending {
    background: #edf2ff !important;
    background-color: #edf2ff !important;
    color: #dbe5f7 !important;
    opacity: 1 !important;
}

/* Lit state */
.iqt-strategic-row.is-lit .iqt-strategic-icon,
.iqt-strategic-row.is-lit .iqt-strategic-icon.iqt-icon-activity,
.iqt-strategic-row.is-lit .iqt-strategic-icon.iqt-icon-shield,
.iqt-strategic-row.is-lit .iqt-strategic-icon.iqt-icon-trending {
    background: #eaf0ff !important;
    background-color: #eaf0ff !important;
    color: #245BFF !important;
    box-shadow:
        0 14px 36px -24px rgba(36, 91, 255, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.75) !important;
}

/* Make the inner SVG-mask icon visible */
.iqt-strategic-icon span {
    width: 26px !important;
    height: 26px !important;
    display: block !important;
    background: currentColor !important;
    background-color: currentColor !important;

    opacity: 1 !important;

    mask-repeat: no-repeat !important;
    mask-position: center !important;
    mask-size: contain !important;

    -webkit-mask-repeat: no-repeat !important;
    -webkit-mask-position: center !important;
    -webkit-mask-size: contain !important;
}

/* Activity icon */
.iqt-strategic-icon.iqt-icon-activity span {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M22 12h-4l-3 9L9 3l-3 9H2'/%3E%3C/svg%3E") !important;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M22 12h-4l-3 9L9 3l-3 9H2'/%3E%3C/svg%3E") !important;
}

/* Shield icon */
.iqt-strategic-icon.iqt-icon-shield span {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.7 8.9a1 1 0 0 1-.6 0C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.2-2.6a1.3 1.3 0 0 1 1.6 0C14.5 3.8 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3C/svg%3E") !important;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.7 8.9a1 1 0 0 1-.6 0C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.2-2.6a1.3 1.3 0 0 1 1.6 0C14.5 3.8 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3C/svg%3E") !important;
}

/* Trending icon */
.iqt-strategic-icon.iqt-icon-trending span {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M16 7h6v6'/%3E%3Cpath d='m22 7-8.5 8.5-5-5L2 17'/%3E%3C/svg%3E") !important;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M16 7h6v6'/%3E%3Cpath d='m22 7-8.5 8.5-5-5L2 17'/%3E%3C/svg%3E") !important;
}

/* Match reference spacing a bit better */
.iqt-strategic-row {
    gap: 28px !important;
    padding: 30px 0 !important;
}

.iqt-strategic-text h3 {
    margin-bottom: 10px !important;
}

.iqt-strategic-text p {
    max-width: 620px !important;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .iqt-strategic-icon,
    .iqt-strategic-icon.iqt-icon-activity,
    .iqt-strategic-icon.iqt-icon-shield,
    .iqt-strategic-icon.iqt-icon-trending {
        width: 50px !important;
        height: 50px !important;
        flex-basis: 50px !important;
        border-radius: 16px !important;
    }

    .iqt-strategic-icon span {
        width: 23px !important;
        height: 23px !important;
    }

    .iqt-strategic-row {
        gap: 18px !important;
    }
}

/* =========================================================
   Fix: layout for .iqt-hero-visual-nondesktop
   (matches the actual PHP markup — pill-1..pill-8 transforms
   from the desktop layout were leaking through and causing overlap)
========================================================= */

.iqt-hero-visual-nondesktop {
    display: none;
}

@media (max-width: 1023px) {
    .iqt-hero-visual-desktop {
        display: none !important;
    }

    .iqt-hero-visual-nondesktop {
        display: flex;
        flex-direction: column;
        gap: 18px;
        width: 100%;
        max-width: 390px;
        margin: 0 auto;
        padding: 4px 0 8px;
    }

    .iqt-nondesktop-pill-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 10px;
        width: 100%;
    }

    .iqt-nondesktop-pill {
        position: relative;
        display: flex;
        justify-content: center;
        width: 100%;
        min-width: 0;
        /* kill the leftover desktop pill-N transforms */
        transform: none !important;
    }

    .iqt-nondesktop-pill .iqt-pill-card {
        width: max-content;
        max-width: 155px;
        gap: 6px;
        padding: 6px 8px;
        border-radius: 9px;
        animation: iqt-mobile-notification-float 4.6s ease-in-out infinite;
    }

    .iqt-nondesktop-pill-row-top > .iqt-nondesktop-pill:nth-child(2) .iqt-pill-card,
    .iqt-nondesktop-pill-row-bottom > .iqt-nondesktop-pill:nth-child(2) .iqt-pill-card {
        animation-delay: 0.45s;
        animation-duration: 5.1s;
    }

    .iqt-nondesktop-pill-row-top > .iqt-nondesktop-pill:nth-child(3) .iqt-pill-card,
    .iqt-nondesktop-pill-row-bottom > .iqt-nondesktop-pill:nth-child(3) .iqt-pill-card {
        animation-delay: 0.9s;
        animation-duration: 5.6s;
    }

    .iqt-nondesktop-pill-row-top > .iqt-nondesktop-pill:nth-child(4) .iqt-pill-card,
    .iqt-nondesktop-pill-row-bottom > .iqt-nondesktop-pill:nth-child(4) .iqt-pill-card {
        animation-delay: 1.25s;
        animation-duration: 4.9s;
    }

    .iqt-nondesktop-pill .iqt-pill-icon {
        width: 12px;
        height: 12px;
        flex: 0 0 12px;
    }

    .iqt-nondesktop-pill .iqt-pill-text strong {
        font-size: 9px;
    }

    .iqt-nondesktop-pill .iqt-pill-text small {
        margin-top: 2px;
        font-size: 7px;
    }

    .iqt-nondesktop-dashboard {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 4px 0;
    }

    .iqt-live-dashboard-nondesktop {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: min(92%, 330px) !important;
        max-width: 330px !important;
        min-width: 0 !important;
        margin: 0 auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        filter: none !important;
        transform: none !important;
    }

    .iqt-live-dashboard-nondesktop .iqt-dashboard-card {
        transform: none !important;
        width: 100%;
        padding: 10px;
        border-radius: 15px;
    }
}

@media (max-width: 389px) {
    .iqt-hero-visual-nondesktop {
        gap: 15px;
    }

    .iqt-nondesktop-pill-row {
        gap: 12px 6px;
    }

    .iqt-nondesktop-pill .iqt-pill-card {
        max-width: 142px;
        padding: 5px 7px;
    }

    .iqt-live-dashboard-nondesktop {
        width: min(94%, 305px) !important;
        max-width: 305px !important;
    }
}

/* =========================================================
   Mobile/Tablet Bottom Notification Row
   Endpoint Guard removed only below desktop
========================================================= */

@media (max-width: 1023px) {
    .iqt-mobile-notification-grid-bottom,
    .iqt-nondesktop-pill-row-bottom,
    .iqt-nd-pill-row-bottom {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        max-width: 560px !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }
}

@media (max-width: 767px) {
    .iqt-mobile-notification-grid-bottom,
    .iqt-nondesktop-pill-row-bottom,
    .iqt-nd-pill-row-bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        max-width: 390px !important;
    }

    .iqt-mobile-notification-grid-bottom > :last-child,
    .iqt-nondesktop-pill-row-bottom > :last-child,
    .iqt-nd-pill-row-bottom > :last-child {
        grid-column: 1 / -1 !important;
        justify-self: center !important;
        width: 50% !important;
    }
}

@media (max-width: 389px) {
    .iqt-mobile-notification-grid-bottom > :last-child,
    .iqt-nondesktop-pill-row-bottom > :last-child,
    .iqt-nd-pill-row-bottom > :last-child {
        width: 58% !important;
    }
}
/* Hide Endpoint Guard on every screen below desktop */
@media screen and (max-width: 1023px) {
    .iqt-hero-absorb-section .pill-7,
    .iqt-hero-visual-desktop .pill-7,
    .iqt-hero-visual-nondesktop .pill-7,
    .iqt-hero-visual-mobile .pill-7,
    .iqt-floating-pill.pill-7,
    .iqt-mobile-notification.pill-7,
    .iqt-nondesktop-pill.pill-7 {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* =========================================================
   IQT Explore Our Standout Features
========================================================= */

:root {
    --iqt-features-primary: 222 89% 56%;
    --iqt-features-foreground: 220 26% 14%;
    --iqt-features-muted: 220 10% 46%;
    --iqt-features-border: 220 13% 91%;
    --iqt-features-background: 210 40% 98%;
    --iqt-features-card: 0 0% 100%;
    --iqt-features-navy: 224 78% 16%;
    --iqt-features-navy-deep: 228 85% 11%;

    --iqt-shadow-card:
        0 4px 24px -4px hsl(220 26% 14% / 0.08);

    --iqt-shadow-card-hover:
        0 12px 32px -8px hsl(220 26% 14% / 0.14);
}

/* Section */
.iqt-features-section {
    position: relative;
    overflow: hidden;
    background: hsl(var(--iqt-features-background));
}

.iqt-features-blueprint {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.025;
    background-image:
        linear-gradient(
            hsl(var(--iqt-features-primary) / 0.45) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            hsl(var(--iqt-features-primary) / 0.45) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
}

.iqt-features-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 64px 20px;
}

@media (min-width: 768px) {
    .iqt-features-container {
        padding: 96px 32px;
    }
}

/* Header */
.iqt-features-header {
    max-width: 650px;
    margin: 0 auto 56px;
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 700ms ease,
        transform 700ms ease;
}

.iqt-features-header.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.iqt-features-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid hsl(var(--iqt-features-border));
    background: hsl(var(--iqt-features-card));
    color: hsl(var(--iqt-features-foreground));
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 20px -16px hsl(var(--iqt-features-foreground) / 0.3);
}

.iqt-features-badge-icon {
    width: 13px;
    height: 13px;
    display: inline-block;
    color: hsl(var(--iqt-features-primary));
    background: currentColor;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='m12 3-1.9 4.7L5 9.5l4 3.1-1.3 5.1L12 15l4.3 2.7-1.3-5.1 4-3.1-5.1-1.8z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='m12 3-1.9 4.7L5 9.5l4 3.1-1.3 5.1L12 15l4.3 2.7-1.3-5.1 4-3.1-5.1-1.8z'/%3E%3C/svg%3E");
}

.iqt-features-header h2 {
    margin: 18px 0 0;
    color: hsl(var(--iqt-features-foreground));
    font-size: 36px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.iqt-features-header h2 span {
    color: hsl(var(--iqt-features-primary));
}

.iqt-features-header p {
    margin: 16px auto 0;
    color: hsl(var(--iqt-features-muted));
    font-size: 16px;
    line-height: 1.7;
}

@media (min-width: 640px) {
    .iqt-features-header h2 {
        font-size: 44px;
    }
}

@media (min-width: 1024px) {
    .iqt-features-header h2 {
        font-size: 52px;
    }
}

/* Grid */
.iqt-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .iqt-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .iqt-features-grid {
        gap: 24px;
    }
}

/* Cards */
.iqt-feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid hsl(var(--iqt-features-border));
    background: hsl(var(--iqt-features-card));
    box-shadow: var(--iqt-shadow-card);
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 700ms ease,
        transform 700ms ease,
        box-shadow 300ms ease;
}

.iqt-feature-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.iqt-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--iqt-shadow-card-hover);
}

.iqt-feature-visual {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid hsl(var(--iqt-features-border) / 0.5);
}

.iqt-feature-content {
    padding: 24px;
}

@media (min-width: 1024px) {
    .iqt-feature-content {
        padding: 30px 32px;
    }
}

.iqt-feature-content h3 {
    margin: 0 0 12px;
    color: hsl(var(--iqt-features-foreground));
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.iqt-feature-content p {
    margin: 0;
    color: hsl(var(--iqt-features-muted));
    font-size: 14px;
    line-height: 1.75;
}

@media (min-width: 1024px) {
    .iqt-feature-content h3 {
        font-size: 25px;
    }
}

/* Shared dot background */
.iqt-visual-dot-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image:
        radial-gradient(
            circle,
            hsl(var(--iqt-features-primary)) 1px,
            transparent 1px
        );
    background-size: 24px 24px;
}

/* =========================================================
   Card 1 — Monitoring
========================================================= */

.iqt-monitoring-visual {
    height: 192px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iqt-monitoring-center {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px solid hsl(var(--iqt-features-primary) / 0.2);
    background: hsl(var(--iqt-features-primary) / 0.1);
    opacity: 0;
    transform: scale(0.7);
    transition:
        opacity 700ms ease,
        transform 700ms ease;
}

.iqt-feature-card.is-visible .iqt-monitoring-center {
    opacity: 1;
    transform: scale(1);
}

.iqt-layers-icon {
    width: 26px;
    height: 26px;
    color: hsl(var(--iqt-features-primary));
    background: currentColor;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='m12 2 9 5-9 5-9-5z'/%3E%3Cpath d='m3 12 9 5 9-5'/%3E%3Cpath d='m3 17 9 5 9-5'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='m12 2 9 5-9 5-9-5z'/%3E%3Cpath d='m3 12 9 5 9-5'/%3E%3Cpath d='m3 17 9 5 9-5'/%3E%3C/svg%3E");
}

.iqt-monitor-pill {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition:
        opacity 700ms ease,
        transform 700ms ease;
}

.iqt-feature-card.is-visible .iqt-monitor-pill {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.pill-cpu {
    margin-left: -72px;
    margin-top: -42px;
    transition-delay: 0ms;
}

.pill-disk {
    margin-left: 72px;
    margin-top: -38px;
    transition-delay: 150ms;
}

.pill-latency {
    margin-left: -70px;
    margin-top: 40px;
    transition-delay: 300ms;
}

.pill-uptime {
    margin-left: 72px;
    margin-top: 38px;
    transition-delay: 450ms;
}

.iqt-monitor-pill-float {
    animation: iqt-pill-float 4.2s ease-in-out infinite;
}

.pill-disk .iqt-monitor-pill-float {
    animation-duration: 4.8s;
    animation-delay: 0.35s;
}

.pill-latency .iqt-monitor-pill-float {
    animation-duration: 5.4s;
    animation-delay: 0.7s;
}

.pill-uptime .iqt-monitor-pill-float {
    animation-duration: 4.2s;
    animation-delay: 1.05s;
}

.iqt-monitor-pill span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 30px;
    padding: 0 12px;
    border: 1px solid;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 650;
    line-height: 1;
    letter-spacing: -0.01em;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        0 4px 10px hsl(var(--iqt-features-foreground) / 0.045),
        inset 0 1px 0 hsl(var(--iqt-features-card) / 0.7);
}

.status-red {
    color: rgb(239, 68, 68);
    border-color: rgba(239, 68, 68, 0.24);
    background: rgba(239, 68, 68, 0.065);
}

.status-green {
    color: rgb(5, 150, 105);
    border-color: rgba(16, 185, 129, 0.24);
    background: rgba(16, 185, 129, 0.065);
}

.status-amber {
    color: rgb(217, 119, 6);
    border-color: rgba(245, 158, 11, 0.24);
    background: rgba(245, 158, 11, 0.065);
}

.status-blue {
    color: hsl(var(--iqt-features-primary));
    border-color: hsl(var(--iqt-features-primary) / 0.24);
    background: hsl(var(--iqt-features-primary) / 0.065);
}

/* =========================================================
   Card 2 — Security
========================================================= */

.iqt-security-visual {
    height: 224px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.iqt-security-stage {
    position: relative;
    z-index: 2;
    width: 280px;
    height: 176px;
}

.iqt-security-row {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 16px;
    border: 1px solid hsl(var(--iqt-features-border));
    background: hsl(var(--iqt-features-card) / 0.92);
    box-shadow: var(--iqt-shadow-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition:
        opacity 700ms ease,
        transform 700ms ease;
}

.security-row-1 {
    top: 0;
    z-index: 3;
}

.security-row-2 {
    top: 48px;
    z-index: 2;
}

.security-row-3 {
    top: 96px;
    z-index: 1;
}

.iqt-feature-card.is-visible .security-row-1 {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.iqt-feature-card.is-visible .security-row-2 {
    opacity: 1;
    transform: translateY(0) scale(0.97);
    transition-delay: 150ms;
}

.iqt-feature-card.is-visible .security-row-3 {
    opacity: 1;
    transform: translateY(0) scale(0.94);
    transition-delay: 300ms;
}

.iqt-security-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.icon-red {
    color: rgb(239, 68, 68);
    background: rgba(239, 68, 68, 0.1);
}

.icon-green {
    color: rgb(16, 185, 129);
    background: rgba(16, 185, 129, 0.1);
}

.icon-blue {
    color: hsl(var(--iqt-features-primary));
    background: hsl(var(--iqt-features-primary) / 0.1);
}

.iqt-shield-icon,
.iqt-activity-icon,
.iqt-chart-icon {
    width: 20px;
    height: 20px;
    display: block;
    color: inherit;
    background: currentColor;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.iqt-shield-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.7 8.9a1 1 0 0 1-.6 0C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.2-2.6a1.3 1.3 0 0 1 1.6 0C14.5 3.8 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.7 8.9a1 1 0 0 1-.6 0C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.2-2.6a1.3 1.3 0 0 1 1.6 0C14.5 3.8 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3C/svg%3E");
}

.iqt-activity-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M22 12h-4l-3 9L9 3l-3 9H2'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M22 12h-4l-3 9L9 3l-3 9H2'/%3E%3C/svg%3E");
}

.iqt-chart-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='m7 16 4-5 4 3 5-7'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='m7 16 4-5 4 3 5-7'/%3E%3C/svg%3E");
}

.iqt-security-copy {
    flex: 1;
    min-width: 0;
}

.iqt-security-copy strong,
.iqt-security-status strong {
    display: block;
    color: hsl(var(--iqt-features-foreground));
    font-size: 13px;
    font-weight: 800;
    line-height: 1.1;
}

.iqt-security-copy small,
.iqt-security-status small {
    display: block;
    margin-top: 4px;
    color: hsl(var(--iqt-features-muted));
    font-size: 10px;
    line-height: 1;
}

.iqt-security-status {
    text-align: right;
}

.iqt-security-status strong {
    font-size: 11px;
}

.text-red {
    color: rgb(239, 68, 68) !important;
}

.text-green {
    color: rgb(16, 185, 129) !important;
}

.text-blue {
    color: hsl(var(--iqt-features-primary)) !important;
}

/* =========================================================
   Card 3 — Code Insights
========================================================= */

.iqt-code-window {
    height: 224px;
    margin: 16px;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid hsl(var(--iqt-features-primary) / 0.08);
    background: hsl(210 40% 99%);
    box-shadow:
        0 2px 16px -4px hsl(var(--iqt-features-primary) / 0.08);
}

.iqt-code-toolbar {
    min-height: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid hsl(var(--iqt-features-primary) / 0.06);
    background: hsl(210 40% 98%);
}

.iqt-traffic-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.iqt-traffic-dots span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.traffic-red {
    background: rgba(248, 113, 113, 0.6);
}

.traffic-amber {
    background: rgba(251, 191, 36, 0.6);
}

.traffic-green {
    background: rgba(52, 211, 153, 0.6);
}

.iqt-code-filename {
    padding: 3px 10px;
    border-radius: 6px;
    background: hsl(var(--iqt-features-primary) / 0.06);
    color: hsl(var(--iqt-features-muted));
    font-family: monospace;
    font-size: 10px;
    font-weight: 600;
}

.iqt-code-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    background: rgba(16, 185, 129, 0.1);
    color: rgb(5, 150, 105);
    font-size: 9px;
    font-weight: 700;
}

.iqt-code-live i {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgb(16, 185, 129);
    animation: iqt-live-pulse 1.5s ease-in-out infinite;
}

.iqt-code-area {
    height: calc(100% - 36px);
    overflow: hidden;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 15%,
        black 85%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 15%,
        black 85%,
        transparent 100%
    );
}

.iqt-code-scroll {
    padding: 8px 14px 0;
    font-family: monospace;
    font-size: 11px;
    line-height: 1.8;
    animation: iqt-scroll-code 18s linear infinite;
}

.iqt-code-line {
    display: flex;
    gap: 12px;
    white-space: pre;
}

.iqt-line-number {
    width: 20px;
    flex: 0 0 20px;
    text-align: right;
    color: hsl(var(--iqt-features-muted) / 0.4);
    font-size: 10px;
}

.iqt-line-text {
    color: hsl(215 16% 47% / 0.8);
}

.code-def .iqt-line-text {
    color: hsl(var(--iqt-features-primary));
    font-weight: 700;
}

.code-keyword .iqt-line-text {
    color: hsl(239 84% 67% / 0.8);
}

.code-string .iqt-line-text {
    color: hsl(158 64% 38% / 0.75);
}

/* =========================================================
   Card 4 — CTA
========================================================= */

.iqt-features-cta {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    border-color: transparent;
    background:
        linear-gradient(
            135deg,
            hsl(var(--iqt-features-navy-deep)),
            hsl(var(--iqt-features-navy))
        );
}

.iqt-cta-dot-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image:
        radial-gradient(circle, white 0.8px, transparent 0.8px);
    background-size: 40px 40px;
}

.iqt-cta-content {
    position: relative;
    z-index: 2;
    max-width: 410px;
    text-align: center;
}

.iqt-cta-content h3 {
    margin: 0;
    color: white;
    font-size: 24px;
    font-weight: 800;
}

.iqt-cta-content p {
    margin: 14px 0 22px;
    color: hsl(214 100% 90% / 0.8);
    font-size: 14px;
    line-height: 1.7;
}

.iqt-features-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 12px;
    background: white;
    color: hsl(var(--iqt-features-foreground)) !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 12px 26px hsl(220 26% 4% / 0.22);
    transition:
        transform 250ms ease,
        filter 250ms ease;
}

.iqt-features-cta-button:hover {
    color: hsl(var(--iqt-features-foreground)) !important;
    transform: translateY(-2px);
    filter: brightness(0.96);
}

.iqt-arrow-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    background: currentColor;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E");
}

/* Animations */
@keyframes iqt-pill-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes iqt-scroll-code {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes iqt-live-pulse {
    0%,
    100% {
        opacity: 0.45;
        transform: scale(0.85);
    }

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

/* Mobile adjustments */
@media (max-width: 767px) {
    .iqt-features-container {
        padding: 72px 20px;
    }

    .iqt-features-header {
        margin-bottom: 40px;
    }

    .iqt-features-header h2 {
        font-size: 36px;
    }

    .iqt-feature-content {
        padding: 22px;
    }

    .iqt-security-stage {
        width: 100%;
        max-width: 280px;
    }

    .iqt-code-window {
        margin: 12px;
    }

    .iqt-monitor-pill span {
        height: 28px;
        padding: 0 10px;
        font-size: 10px;
    }

    .pill-cpu {
        margin-left: -66px;
        margin-top: -40px;
    }

    .pill-disk {
        margin-left: 66px;
        margin-top: -36px;
    }

    .pill-latency {
        margin-left: -64px;
        margin-top: 38px;
    }

    .pill-uptime {
        margin-left: 66px;
        margin-top: 36px;
    }
}

/* =========================================================
   Data & Performance Insights — Code Editor Layout Fix
   Paste at the VERY BOTTOM of your CSS
========================================================= */

/* Code editor outer panel */
.iqt-insights-card .iqt-code-window {
    position: relative !important;
    display: block !important;
    width: calc(100% - 32px) !important;
    height: 224px !important;
    margin: 16px !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 1px solid hsl(var(--iqt-features-primary) / 0.09) !important;
    border-radius: 18px !important;
    background: hsl(210 40% 99%) !important;
    box-shadow:
        0 2px 16px -4px hsl(var(--iqt-features-primary) / 0.08) !important;
    box-sizing: border-box !important;
}

/* Editor toolbar */
.iqt-insights-card .iqt-code-toolbar {
    position: relative !important;
    z-index: 5 !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 48px !important;
    height: 48px !important;
    gap: 10px !important;
    padding: 0 20px !important;
    margin: 0 !important;
    border-bottom: 1px solid hsl(var(--iqt-features-primary) / 0.07) !important;
    background: hsl(210 40% 98%) !important;
    box-sizing: border-box !important;
}

/* Traffic-light buttons */
.iqt-insights-card .iqt-traffic-dots {
    display: flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    gap: 7px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.iqt-insights-card .iqt-traffic-dots span {
    display: block !important;
    width: 11px !important;
    height: 11px !important;
    min-width: 11px !important;
    min-height: 11px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
}

.iqt-insights-card .traffic-red {
    background: rgba(248, 113, 113, 0.68) !important;
}

.iqt-insights-card .traffic-amber {
    background: rgba(251, 191, 36, 0.68) !important;
}

.iqt-insights-card .traffic-green {
    background: rgba(52, 211, 153, 0.68) !important;
}

/* Filename chip */
.iqt-insights-card .iqt-code-filename {
    display: inline-flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    height: 26px !important;
    padding: 0 12px !important;
    margin: 0 !important;
    border-radius: 8px !important;
    background: hsl(var(--iqt-features-primary) / 0.06) !important;
    color: hsl(var(--iqt-features-muted)) !important;
    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        Menlo,
        monospace !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    line-height: 26px !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    text-align: left !important;
}

/* Live badge */
.iqt-insights-card .iqt-code-live {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    gap: 6px !important;
    min-height: 25px !important;
    margin: 0 0 0 auto !important;
    padding: 0 10px !important;
    border: 1px solid rgba(16, 185, 129, 0.2) !important;
    border-radius: 999px !important;
    background: rgba(16, 185, 129, 0.08) !important;
    color: rgb(5, 150, 105) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.iqt-insights-card .iqt-code-live i {
    display: block !important;
    width: 6px !important;
    height: 6px !important;
    min-width: 6px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background: rgb(52, 211, 153) !important;
}

/* Visible scrolling area */
.iqt-insights-card .iqt-code-area {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: calc(100% - 48px) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    text-align: left !important;
    box-sizing: border-box !important;

    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 12%,
        black 88%,
        transparent 100%
    ) !important;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 12%,
        black 88%,
        transparent 100%
    ) !important;
}

/* Moving code content */
.iqt-insights-card .iqt-code-scroll {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
    padding: 10px 20px 0 18px !important;
    color: hsl(215 16% 47% / 0.78) !important;
    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        Menlo,
        monospace !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 1.8 !important;
    text-align: left !important;
    box-sizing: border-box !important;
    animation: iqt-scroll-code 18s linear infinite !important;
}

/*
 * Critical fix:
 * Use a fixed line-number column and a flexible code column.
 */
.iqt-insights-card .iqt-code-line {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 28px minmax(0, 1fr) !important;
    align-items: baseline !important;
    column-gap: 14px !important;
    width: 100% !important;
    min-width: 100% !important;
    min-height: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    white-space: pre !important;
    box-sizing: border-box !important;
}

/* Prevent global theme span styles from breaking the columns */
.iqt-insights-card .iqt-code-line > span {
    position: static !important;
    display: block !important;
    float: none !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    text-indent: 0 !important;
    letter-spacing: 0 !important;
    box-sizing: border-box !important;
}

/* Fixed line-number gutter */
.iqt-insights-card .iqt-line-number {
    grid-column: 1 !important;
    justify-self: end !important;
    width: 28px !important;
    min-width: 28px !important;
    color: hsl(var(--iqt-features-muted) / 0.38) !important;
    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        Menlo,
        monospace !important;
    font-size: 10px !important;
    font-weight: 400 !important;
    line-height: 1.8 !important;
    text-align: right !important;
    white-space: nowrap !important;
    user-select: none !important;
}

/* Code text column */
.iqt-insights-card .iqt-line-text {
    grid-column: 2 !important;
    justify-self: stretch !important;
    width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
    color: hsl(215 16% 47% / 0.78) !important;
    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        Menlo,
        monospace !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 1.8 !important;
    text-align: left !important;
    white-space: pre !important;
}

/* Syntax colors */
.iqt-insights-card .code-def .iqt-line-text {
    color: hsl(var(--iqt-features-primary) / 0.72) !important;
    font-weight: 600 !important;
}

.iqt-insights-card .code-keyword .iqt-line-text {
    color: hsl(239 84% 67% / 0.82) !important;
    font-weight: 500 !important;
}

.iqt-insights-card .code-string .iqt-line-text {
    color: hsl(158 64% 38% / 0.78) !important;
}

.iqt-insights-card .code-normal .iqt-line-text {
    color: hsl(215 16% 47% / 0.76) !important;
}

.iqt-insights-card .code-blank {
    min-height: 20px !important;
}

/* Preserve seamless vertical code loop */
@keyframes iqt-scroll-code {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(0, -50%, 0);
    }
}

/* Pause code movement when hovering for readability */
.iqt-insights-card .iqt-code-window:hover .iqt-code-scroll {
    animation-play-state: paused !important;
}

/* Tablet */
@media (max-width: 1023px) {
    .iqt-insights-card .iqt-code-window {
        width: calc(100% - 28px) !important;
        margin: 14px !important;
    }

    .iqt-insights-card .iqt-code-toolbar {
        padding-right: 16px !important;
        padding-left: 16px !important;
    }

    .iqt-insights-card .iqt-code-scroll {
        padding-right: 16px !important;
        padding-left: 14px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .iqt-insights-card .iqt-code-window {
        width: calc(100% - 24px) !important;
        height: 210px !important;
        margin: 12px !important;
        border-radius: 15px !important;
    }

    .iqt-insights-card .iqt-code-toolbar {
        height: 44px !important;
        min-height: 44px !important;
        padding: 0 13px !important;
        gap: 8px !important;
    }

    .iqt-insights-card .iqt-code-area {
        height: calc(100% - 44px) !important;
    }

    .iqt-insights-card .iqt-code-filename {
        max-width: 170px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        font-size: 9.5px !important;
    }

    .iqt-insights-card .iqt-code-scroll {
        padding: 9px 12px 0 10px !important;
        font-size: 10px !important;
    }

    .iqt-insights-card .iqt-code-line {
        grid-template-columns: 24px minmax(0, 1fr) !important;
        column-gap: 10px !important;
    }

    .iqt-insights-card .iqt-line-number {
        width: 24px !important;
        min-width: 24px !important;
        font-size: 9px !important;
    }

    .iqt-insights-card .iqt-line-text {
        font-size: 10px !important;
    }
}

/* =========================================================
   IQT — Solutions for Every Industry
========================================================= */

.iqt-industries-section {
    --iqt-industry-primary: #245bff;
    --iqt-industry-glow: #6b8dff;
    --iqt-industry-foreground: #1c2433;
    --iqt-industry-muted: #697386;
    --iqt-industry-border: #e6e9ef;
    --iqt-industry-background: #ffffff;

    position: relative;
    overflow: hidden;
    padding: 112px 0;
    background: var(--iqt-industry-background);
}

.iqt-industries-bg-glow,
.iqt-industries-grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.iqt-industries-bg-glow {
    background:
        radial-gradient(
            circle at 22% 45%,
            rgba(36, 91, 255, 0.08),
            transparent 42%
        ),
        radial-gradient(
            circle at 86% 54%,
            rgba(107, 141, 255, 0.06),
            transparent 38%
        );
}

.iqt-industries-grid-overlay {
    opacity: 0.018;
    background-image:
        linear-gradient(
            rgba(28, 36, 51, 0.35) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(28, 36, 51, 0.35) 1px,
            transparent 1px
        );
    background-size: 72px 72px;
}

.iqt-industries-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
}

.iqt-industries-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(360px, 0.88fr);
    align-items: start;
    gap: 108px;
}

/* Left list */
.iqt-industries-list {
    display: flex;
    flex-direction: column;
}

.iqt-industry-row {
    display: grid;
    grid-template-columns:
        58px
        minmax(0, 1fr)
        3px;
    align-items: stretch;
    gap: 22px;
    padding: 28px 0;
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 500ms ease,
        transform 500ms ease;
}

.iqt-industry-row + .iqt-industry-row {
    border-top: 1px solid rgba(230, 233, 239, 0.9);
}

.iqt-industry-row.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.iqt-industry-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(230, 233, 239, 0.95);
    border-radius: 18px;
    color: #8b95a7;
    background: rgba(230, 233, 239, 0.52);
    box-shadow: 0 10px 28px -24px rgba(28, 36, 51, 0.35);
    transition:
        color 700ms ease,
        background 700ms ease,
        border-color 700ms ease,
        box-shadow 700ms ease,
        transform 700ms ease;
}

.iqt-industry-icon svg {
    width: 27px;
    height: 27px;
}

.iqt-industry-content {
    min-width: 0;
    padding: 2px 0;
}

.iqt-industry-content h3 {
    margin: 0 0 9px;
    color: var(--iqt-industry-foreground);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.iqt-industry-content p {
    max-width: 610px;
    margin: 0;
    color: var(--iqt-industry-muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
}

.iqt-industry-accent {
    width: 3px;
    min-height: 100%;
    border-radius: 999px;
    background: var(--iqt-industry-border);
    transition:
        background 700ms ease,
        box-shadow 700ms ease,
        transform 700ms ease;
}

.iqt-industry-row.is-active .iqt-industry-icon {
    color: var(--iqt-industry-primary);
    background: rgba(36, 91, 255, 0.1);
    border-color: rgba(36, 91, 255, 0.16);
    box-shadow:
        0 14px 34px -22px rgba(36, 91, 255, 0.48),
        0 0 24px rgba(36, 91, 255, 0.1);
    transform: translateY(-2px);
}

.iqt-industry-row.is-active .iqt-industry-accent {
    background:
        linear-gradient(
            180deg,
            var(--iqt-industry-primary),
            var(--iqt-industry-glow)
        );
    box-shadow:
        0 0 8px rgba(36, 91, 255, 0.4),
        0 0 20px rgba(36, 91, 255, 0.15);
    transform: scaleY(1.02);
}

/* Right copy */
.iqt-industries-copy {
    width: 100%;
    max-width: 470px;
    margin-left: auto;
    padding-top: 20px;
}

.iqt-industries-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--iqt-industry-primary);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.iqt-industries-copy h2 {
    margin: 0;
    color: var(--iqt-industry-foreground);
    font-size: clamp(42px, 4.6vw, 60px);
    font-weight: 850;
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.iqt-industries-copy h2 span {
    display: block;
    color: var(--iqt-industry-primary);
    text-shadow:
        0 0 26px rgba(36, 91, 255, 0.24),
        0 0 60px rgba(36, 91, 255, 0.1);
}

.iqt-industries-description {
    margin-top: 25px;
    color: var(--iqt-industry-muted);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.78;
}

.iqt-industries-description p {
    margin: 0;
}

.iqt-industries-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    margin-top: 32px;
    padding: 0 22px;
    border: 1px solid rgba(36, 91, 255, 0.2);
    border-radius: 12px;
    color: #ffffff !important;
    background: var(--iqt-industry-primary);
    box-shadow:
        0 14px 30px rgba(36, 91, 255, 0.2),
        0 0 0 1px rgba(36, 91, 255, 0.06);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    transition:
        transform 280ms ease,
        box-shadow 280ms ease,
        filter 280ms ease;
}

.iqt-industries-button span {
    font-size: 18px;
    transition: transform 280ms ease;
}

.iqt-industries-button:hover {
    color: #ffffff !important;
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow:
        0 18px 42px rgba(36, 91, 255, 0.28),
        0 0 0 1px rgba(36, 91, 255, 0.08);
}

.iqt-industries-button:hover span {
    transform: translateX(3px);
}

/* Tablet */
@media (max-width: 1023px) {
    .iqt-industries-section {
        padding: 90px 0;
    }

    .iqt-industries-container {
        padding: 0 32px;
    }

    .iqt-industries-layout {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .iqt-industries-copy {
        max-width: 680px;
        margin: 0;
        padding-top: 0;
    }

    .iqt-industries-copy h2 span {
        display: inline;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .iqt-industries-section {
        padding: 72px 0;
    }

    .iqt-industries-container {
        padding: 0 18px;
    }

    .iqt-industries-layout {
        gap: 48px;
    }

    .iqt-industry-row {
        grid-template-columns:
            50px
            minmax(0, 1fr)
            3px;
        gap: 15px;
        padding: 22px 0;
    }

    .iqt-industry-icon {
        width: 50px;
        height: 50px;
        border-radius: 15px;
    }

    .iqt-industry-icon svg {
        width: 23px;
        height: 23px;
    }

    .iqt-industry-content h3 {
        margin-bottom: 7px;
        font-size: 18px;
    }

    .iqt-industry-content p {
        font-size: 13px;
        line-height: 1.68;
    }

    .iqt-industries-eyebrow {
        margin-bottom: 14px;
        font-size: 9px;
        letter-spacing: 0.16em;
    }

    .iqt-industries-copy h2 {
        font-size: clamp(38px, 11vw, 48px);
        line-height: 1.04;
    }

    .iqt-industries-copy h2 span {
        display: block;
    }

    .iqt-industries-description {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.7;
    }

    .iqt-industries-button {
        width: 100%;
        margin-top: 26px;
    }
}

/* Small phones */
@media (max-width: 389px) {
    .iqt-industries-container {
        padding: 0 14px;
    }

    .iqt-industry-row {
        grid-template-columns:
            46px
            minmax(0, 1fr)
            3px;
        gap: 12px;
    }

    .iqt-industry-icon {
        width: 46px;
        height: 46px;
    }

    .iqt-industry-content h3 {
        font-size: 17px;
    }

    .iqt-industry-content p {
        font-size: 12.5px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .iqt-industry-row {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .iqt-industry-icon,
    .iqt-industry-accent,
    .iqt-industries-button,
    .iqt-industries-button span {
        transition: none !important;
    }
}

/* IQT — Unlock Your Business Potential With Our Services */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

.iqt-services-section {
    --iqt-services-primary: 224 100% 55%;
    --iqt-services-foreground: 220 26% 14%;
    --iqt-services-muted: 220 9% 46%;
    --iqt-services-border: 220 13% 91%;
    --iqt-services-surface: 0 0% 100%;
    --iqt-services-alt-surface: 210 40% 98%;

    width: 100%;
    padding: 96px 0;
    background: hsl(var(--iqt-services-alt-surface));
    font-family: 'Manrope', sans-serif;
}

.iqt-services-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.iqt-services-header {
    max-width: 760px;
    margin: 0 auto 56px;
    padding: 0;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    text-align: center;
}

.iqt-services-header h2 {
    margin: 0;
    padding: 0;
    color: hsl(var(--iqt-services-foreground)) !important;
    background: transparent !important;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.iqt-services-header h2 span {
    color: inherit !important;
    background: transparent !important;
    text-shadow: none !important;
}

.iqt-services-intro {
    margin-top: 18px;
    padding: 0;
    color: hsl(var(--iqt-services-muted));
    background: transparent !important;
    font-size: 16px;
    line-height: 1.75;
}

.iqt-services-intro p {
    margin: 0;
    padding: 0;
    background: transparent !important;
}

.iqt-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.iqt-service-card {
    position: relative;
    min-height: 100%;
    padding: 28px;
    border: 1px solid hsl(var(--iqt-services-border));
    border-radius: 16px;
    background: hsl(var(--iqt-services-surface));
    box-shadow: 0 4px 24px -4px hsl(var(--iqt-services-foreground) / 0.08);
    cursor: pointer;
    outline: none;
    transition:
        transform 300ms ease,
        box-shadow 300ms ease,
        border-color 300ms ease;
}

.iqt-service-card:hover,
.iqt-service-card:focus-visible {
    transform: translateY(-4px);
    border-color: hsl(var(--iqt-services-primary) / 0.22);
    box-shadow: 0 12px 32px -8px hsl(var(--iqt-services-foreground) / 0.14);
}

.iqt-service-card:focus-visible {
    box-shadow:
        0 0 0 3px hsl(var(--iqt-services-primary) / 0.18),
        0 12px 32px -8px hsl(var(--iqt-services-foreground) / 0.14);
}

.iqt-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 12px;
    color: hsl(var(--iqt-services-primary));
    background: hsl(var(--iqt-services-primary) / 0.10);
    transition:
        background-color 300ms ease,
        transform 300ms ease;
}

.iqt-service-card:hover .iqt-service-icon,
.iqt-service-card:focus-visible .iqt-service-icon {
    background: hsl(var(--iqt-services-primary) / 0.20);
    transform: scale(1.04);
}

.iqt-service-icon svg {
    width: 24px;
    height: 24px;
}

.iqt-service-card h3 {
    margin: 0 0 10px;
    color: hsl(var(--iqt-services-foreground));
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.iqt-service-card p {
    margin: 0;
    color: hsl(var(--iqt-services-muted));
    font-size: 14px;
    line-height: 1.75;
}

@media (max-width: 1023px) {
    .iqt-services-section {
        padding: 80px 0;
    }

    .iqt-services-container {
        padding: 0 24px;
    }

    .iqt-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 639px) {
    .iqt-services-section {
        padding: 64px 0;
    }

    .iqt-services-container {
        padding: 0 16px;
    }

    .iqt-services-header {
        margin-bottom: 40px;
    }

    .iqt-services-header h2 {
        font-size: 34px;
        line-height: 1.1;
    }

    .iqt-services-intro {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.7;
    }

    .iqt-services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .iqt-service-card {
        padding: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .iqt-service-card,
    .iqt-service-icon {
        transition: none !important;
    }

    .iqt-service-card:hover,
    .iqt-service-card:focus-visible {
        transform: none;
    }
}
/* ================================
   IQT Technology Marquee Section
================================ */

.iqt-tech-marquee-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(180deg, #0B1F6A 0%, #0A1A5C 100%);
}

/* Radial glow overlay */
.iqt-tech-bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at 50% 40%,
        rgba(30, 94, 255, 0.12) 0%,
        transparent 70%
    );
}

/* Faint grid overlay */
.iqt-tech-grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Main content container */
.iqt-tech-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Full-width marquee breakout */
.iqt-marquee-wrapper {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 64px;
    overflow: hidden;
}

.iqt-marquee-row {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
}

.iqt-marquee-row + .iqt-marquee-row {
    margin-top: 16px;
}

.iqt-marquee-track {
    display: flex;
    width: max-content;
    min-width: max-content;
    will-change: transform;
}

/* Logo cards */
.iqt-logo-card {
    width: 80px;
    height: 80px;
    margin: 0 12px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04);
    transition: all 300ms ease;
}

.iqt-logo-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.06);
}

.iqt-logo-card img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.iqt-logo-card span {
    margin-top: 8px;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* Fallback text if logo image fails */
.iqt-logo-fallback-active {
    margin-top: 0 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Heading block */
.iqt-tech-heading {
    max-width: 672px;
    margin: 0 auto 56px;
    text-align: center;
}

.iqt-tech-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.15;
}

.iqt-tech-heading p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.7;
}

/* Partner pill grid */
.iqt-partner-pill-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.iqt-partner-pill {
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    transition: all 300ms ease;
}

.iqt-partner-pill:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Marquee animations */
.marquee-left {
    animation: marquee-left 18s linear infinite;
}

.marquee-right {
    animation: marquee-right 18s linear infinite;
}

@keyframes marquee-left {
    from {
        transform: translateX(0);
    }

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

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

    to {
        transform: translateX(0);
    }
}

/* Tablet and up */
@media (min-width: 640px) {
    .iqt-logo-card {
        width: 96px;
        height: 96px;
    }

    .iqt-logo-card span {
        font-size: 12px;
    }

    .iqt-tech-heading h2 {
        font-size: 40px;
    }
}

/* Medium screens */
@media (min-width: 768px) {
    .iqt-tech-marquee-section {
        padding: 112px 0;
    }

    .iqt-marquee-wrapper {
        margin-bottom: 80px;
    }

    .iqt-partner-pill-grid {
        gap: 24px;
    }
}

/* Large screens */
@media (min-width: 1024px) {
    .iqt-tech-marquee-section {
        padding: 128px 0;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .iqt-tech-marquee-section {
        padding: 80px 0;
    }

    .iqt-marquee-wrapper {
        margin-bottom: 56px;
    }

    .iqt-logo-card {
        width: 80px;
        height: 80px;
        margin: 0 8px;
    }

    .iqt-tech-heading {
        margin-bottom: 40px;
        padding: 0 12px;
    }

    .iqt-tech-heading h2 {
        font-size: 30px;
    }

    .iqt-tech-heading p {
        font-size: 15px;
    }

    .iqt-partner-pill-grid {
        gap: 12px;
    }

    .iqt-partner-pill {
        padding: 10px 16px;
        font-size: 13px;
    }
}
	
/* IQT — Partner Accordion */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

.iqt-partner-accordion-section {
    --iqt-partner-surface-alt: 210 40% 98%;
    --iqt-partner-background: 0 0% 100%;
    --iqt-partner-foreground: 220 26% 14%;
    --iqt-partner-primary: 224 100% 55%;
    --iqt-partner-primary-foreground: 0 0% 100%;
    --iqt-partner-muted: 220 9% 46%;
    --iqt-partner-border: 220 13% 91%;
    --iqt-partner-shadow: 0 4px 24px -4px hsl(220 26% 14% / 0.08);
    --iqt-partner-shadow-hover: 0 12px 32px -8px hsl(220 26% 14% / 0.14);

    width: 100%;
    padding: 96px 0;
    background: hsl(var(--iqt-partner-surface-alt));
    font-family: 'Manrope', sans-serif;
}

.iqt-partner-accordion-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.iqt-partner-accordion-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 48px;
}

.iqt-partner-accordion-copy {
    max-width: 520px;
}

.iqt-partner-accordion-copy h2 {
    margin: 0;
    color: hsl(var(--iqt-partner-foreground));
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.iqt-partner-accordion-description {
    margin-top: 20px;
    color: hsl(var(--iqt-partner-muted));
    font-size: 16px;
    line-height: 1.75;
}

.iqt-partner-accordion-description p {
    margin: 0;
}

.iqt-partner-accordion-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 32px;
    padding: 0 24px;
    border-radius: 12px;
    color: hsl(var(--iqt-partner-primary-foreground)) !important;
    background: hsl(var(--iqt-partner-primary));
    box-shadow: 0 10px 24px hsl(var(--iqt-partner-primary) / 0.18);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    transition: filter 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.iqt-partner-accordion-button:hover {
    color: hsl(var(--iqt-partner-primary-foreground)) !important;
    filter: brightness(1.1);
    box-shadow: 0 14px 30px hsl(var(--iqt-partner-primary) / 0.24);
    transform: translateY(-2px);
}

.iqt-partner-accordion-button:focus-visible {
    outline: 2px solid hsl(var(--iqt-partner-primary));
    outline-offset: 3px;
}

.iqt-partner-accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.iqt-partner-accordion-item {
    overflow: hidden;
    border: 1px solid hsl(var(--iqt-partner-border));
    border-radius: 16px;
    background: hsl(var(--iqt-partner-background));
    box-shadow: var(--iqt-partner-shadow);
    transition: box-shadow 300ms ease, border-color 300ms ease;
}

.iqt-partner-accordion-item.is-open {
    border-color: hsl(var(--iqt-partner-primary) / 0.18);
    box-shadow: var(--iqt-partner-shadow-hover);
}

.iqt-partner-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 16px 20px;
    border: 0;
    background: transparent;
    color: hsl(var(--iqt-partner-foreground));
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
    cursor: pointer;
}

.iqt-partner-accordion-trigger:hover {
    text-decoration: none;
}

.iqt-partner-accordion-trigger:focus-visible {
    outline: 2px solid hsl(var(--iqt-partner-primary));
    outline-offset: -3px;
}

.iqt-partner-accordion-chevron {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    color: hsl(var(--iqt-partner-muted));
    background: hsl(var(--iqt-partner-surface-alt));
    transition: transform 250ms ease, color 250ms ease, background-color 250ms ease;
}

.iqt-partner-accordion-chevron svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.iqt-partner-accordion-item.is-open .iqt-partner-accordion-chevron {
    color: hsl(var(--iqt-partner-primary));
    background: hsl(var(--iqt-partner-primary) / 0.1);
    transform: rotate(180deg);
}

.iqt-partner-accordion-panel {
    color: hsl(var(--iqt-partner-muted));
}

.iqt-partner-accordion-panel-inner {
    padding: 0 20px 16px;
}

.iqt-partner-accordion-panel p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
}

@media (max-width: 1023px) {
    .iqt-partner-accordion-section {
        padding: 80px 0;
    }

    .iqt-partner-accordion-container {
        padding: 0 24px;
    }

    .iqt-partner-accordion-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .iqt-partner-accordion-copy {
        max-width: 680px;
    }
}

@media (max-width: 639px) {
    .iqt-partner-accordion-section {
        padding: 64px 0;
    }

    .iqt-partner-accordion-container {
        padding: 0 16px;
    }

    .iqt-partner-accordion-grid {
        gap: 40px;
    }

    .iqt-partner-accordion-copy h2 {
        font-size: 34px;
    }

    .iqt-partner-accordion-description {
        font-size: 15px;
    }

    .iqt-partner-accordion-button {
        width: 100%;
    }

    .iqt-partner-accordion-trigger {
        padding: 16px;
    }

    .iqt-partner-accordion-panel-inner {
        padding: 0 16px 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .iqt-partner-accordion-button,
    .iqt-partner-accordion-item,
    .iqt-partner-accordion-chevron {
        transition: none !important;
    }
}

/* ==========================================================================
   SECTION: Our Process Timeline
   REPLACES: From Vision to Execution Roadmap
   ========================================================================== */

#iqt-process-timeline {
    --process-primary: 224 100% 55%;
    --process-blue-glow: 205 100% 67%;
    --process-navy-light: 222 70% 24%;
    --process-navy: 224 78% 16%;
    --process-navy-deep: 228 85% 11%;
    --process-background: 0 0% 100%;
    --process-foreground: 220 26% 14%;
    --process-muted: 220 16% 96%;
    --process-muted-foreground: 220 9% 46%;
    --process-border: 220 13% 91%;
    --process-secondary: 220 20% 96%;
    --process-card: 0 0% 100%;
    --process-shadow-card:
        0 4px 24px -4px
        hsl(220 26% 14% / 0.08);

    position: relative;
    width: 100%;
    overflow: hidden;
    background: hsl(var(--process-background));
    font-family: "Manrope", sans-serif;
}

#iqt-process-timeline,
#iqt-process-timeline * {
    box-sizing: border-box;
}

#iqt-process-timeline .iqt-process-container {
    width: min(calc(100% - 40px), 1240px);
    margin: 0 auto;
    padding: 96px 0;
}

/* Header */

#iqt-process-timeline .iqt-process-header {
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

#iqt-process-timeline .iqt-process-header::before,
#iqt-process-timeline .iqt-process-header::after {
    display: none;
    content: none;
}

#iqt-process-timeline .iqt-process-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    color: hsl(var(--process-muted-foreground));
    background: hsl(var(--process-muted));
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

#iqt-process-timeline .iqt-process-badge-dot {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: hsl(var(--process-foreground));
}

#iqt-process-timeline .iqt-process-header h2 {
    margin: 24px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: hsl(var(--process-foreground));
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

#iqt-process-timeline .iqt-process-header h2::before,
#iqt-process-timeline .iqt-process-header h2::after {
    display: none;
    content: none;
}

#iqt-process-timeline .iqt-process-header > p {
    max-width: 680px;
    margin: 20px auto 0;
    color: hsl(var(--process-muted-foreground));
    font-size: 16px;
    line-height: 1.75;
}

/* Timeline */

#iqt-process-timeline .iqt-process-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 80px;
}

#iqt-process-timeline .iqt-process-rail {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 10;
    display: block;
    width: 1px;
    transform: translateX(-50%);
    pointer-events: none;
}

#iqt-process-timeline .iqt-process-rail-track,
#iqt-process-timeline .iqt-process-rail-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
}

#iqt-process-timeline .iqt-process-rail-track {
    height: 100%;
    background: hsl(var(--process-border));
}

#iqt-process-timeline .iqt-process-rail-fill {
    height: 0;
    background: linear-gradient(
        to bottom,
        hsl(var(--process-primary)),
        hsl(var(--process-blue-glow))
    );
    box-shadow:
        0 0 10px
        hsl(var(--process-primary) / 0.28);
    will-change: height;
}

/* Rows */

#iqt-process-timeline .iqt-process-step {
    position: relative;
    min-height: 148px;
    padding: 28px 32px;
    border-radius: 22px;
    background: transparent;
    transition: background-color 500ms ease;
}

#iqt-process-timeline .iqt-process-step.is-active {
    background: #f2f2f3;
}

#iqt-process-timeline .iqt-process-step-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);
    align-items: center;
    gap: 64px;
    min-height: 92px;
}

#iqt-process-timeline .iqt-process-visual-side,
#iqt-process-timeline .iqt-process-copy-side {
    min-width: 0;
}

#iqt-process-timeline .iqt-process-visual-side {
    display: flex;
}

/* Even rows */

#iqt-process-timeline
    .iqt-process-step.is-even
    .iqt-process-visual-side {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-end;
}

#iqt-process-timeline
    .iqt-process-step.is-even
    .iqt-process-copy-side {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
}

/* Odd rows */

#iqt-process-timeline
    .iqt-process-step.is-odd
    .iqt-process-visual-side {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-start;
}

#iqt-process-timeline
    .iqt-process-step.is-odd
    .iqt-process-copy-side {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
}

/* Icon and number */

#iqt-process-timeline .iqt-process-icon-group {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

#iqt-process-timeline
    .iqt-process-step.is-odd
    .iqt-process-icon-group {
    flex-direction: row-reverse;
}

#iqt-process-timeline .iqt-process-icon-tile {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: hsl(var(--process-muted-foreground));
    background: hsl(var(--process-secondary));
    box-shadow:
        0 2px 8px -4px
        hsl(220 26% 14% / 0.15);
    transition:
        color 500ms ease,
        background 500ms ease,
        box-shadow 500ms ease,
        transform 500ms ease;
}

#iqt-process-timeline
    .iqt-process-step.is-active
    .iqt-process-icon-tile {
    color: #ffffff;
    background: linear-gradient(
        145deg,
        hsl(var(--process-navy-light)),
        hsl(var(--process-navy-deep))
    );
    box-shadow:
        0 12px 28px -10px
        hsl(var(--process-navy) / 0.55);
    transform: translateY(-1px);
}

#iqt-process-timeline .iqt-process-icon-tile svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#iqt-process-timeline .iqt-process-number {
    display: inline-flex;
    min-width: 30px;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 8px;
    color: hsl(var(--process-muted-foreground));
    background: hsl(var(--process-card));
    box-shadow: var(--process-shadow-card);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}

/* Text */

#iqt-process-timeline .iqt-process-copy-side h3 {
    margin: 0;
    color: hsl(var(--process-foreground));
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

#iqt-process-timeline .iqt-process-copy-side p {
    display: inline-block;
    max-width: 390px;
    margin: 6px 0 0;
    color: hsl(var(--process-muted-foreground));
    font-size: 12px;
    line-height: 1.65;
}

/* Center morphing nodes */

#iqt-process-timeline .iqt-process-node {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 20;
    display: flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border: 1.5px solid hsl(var(--process-border));
    border-radius: 9px;
    background: hsl(var(--process-background));
    box-shadow: none;
    transform:
        translate(-50%, -50%)
        scale(0.86);
    transition:
        border-radius 500ms ease-out,
        border-color 500ms ease-out,
        background 500ms ease-out,
        box-shadow 500ms ease-out,
        transform 500ms ease-out;
}

#iqt-process-timeline .iqt-process-node span {
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(
        140deg,
        hsl(var(--process-navy-deep)),
        hsl(var(--process-navy))
    );
    transition:
        width 500ms ease-out,
        height 500ms ease-out;
}

#iqt-process-timeline
    .iqt-process-step.is-active
    .iqt-process-node {
    border: 2px solid transparent;
    border-radius: 999px;
    background:
        linear-gradient(
            hsl(var(--process-background)),
            hsl(var(--process-background))
        ) padding-box,
        linear-gradient(
            140deg,
            hsl(var(--process-primary)),
            hsl(var(--process-blue-glow)),
            hsl(var(--process-primary) / 0.4)
        ) border-box;
    box-shadow:
        0 0 0 5px
        hsl(var(--process-primary) / 0.1),
        0 0 14px
        hsl(var(--process-primary) / 0.35);
    transform:
        translate(-50%, -50%)
        scale(1);
}

#iqt-process-timeline
    .iqt-process-step.is-active
    .iqt-process-node span {
    width: 7px;
    height: 7px;
}

/* Mobile and tablet */

@media (max-width: 767px) {
    #iqt-process-timeline .iqt-process-container {
        width: min(calc(100% - 28px), 1240px);
        padding: 72px 0;
    }

    #iqt-process-timeline .iqt-process-header h2 {
        font-size: 42px;
    }

    #iqt-process-timeline .iqt-process-header > p {
        font-size: 15px;
    }

    #iqt-process-timeline .iqt-process-list {
        gap: 12px;
        margin-top: 56px;
    }

    #iqt-process-timeline .iqt-process-rail,
    #iqt-process-timeline .iqt-process-node {
        display: none;
    }

    #iqt-process-timeline .iqt-process-step {
        min-height: 0;
        padding: 20px 16px;
    }

    #iqt-process-timeline .iqt-process-step-grid {
        display: flex;
        min-height: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    #iqt-process-timeline
        .iqt-process-step.is-even
        .iqt-process-visual-side,
    #iqt-process-timeline
        .iqt-process-step.is-odd
        .iqt-process-visual-side {
        justify-content: flex-start;
    }

    #iqt-process-timeline
        .iqt-process-step.is-even
        .iqt-process-copy-side,
    #iqt-process-timeline
        .iqt-process-step.is-odd
        .iqt-process-copy-side {
        text-align: left;
    }

    #iqt-process-timeline
        .iqt-process-step.is-odd
        .iqt-process-icon-group {
        flex-direction: row;
    }

    #iqt-process-timeline .iqt-process-copy-side p {
        max-width: none;
        font-size: 13px;
    }
}

@media (max-width: 479px) {
    #iqt-process-timeline .iqt-process-container {
        padding: 64px 0;
    }

    #iqt-process-timeline .iqt-process-header h2 {
        font-size: 38px;
    }

    #iqt-process-timeline .iqt-process-step {
        padding: 18px 14px;
        border-radius: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #iqt-process-timeline .iqt-process-step,
    #iqt-process-timeline .iqt-process-icon-tile,
    #iqt-process-timeline .iqt-process-node,
    #iqt-process-timeline .iqt-process-node span {
        transition: none;
    }
}
	
/* =========================================================
   IQT Advantage — Stats Bento Grid
========================================================= */

#stats.iqt-stats-section {
    --iqt-primary: #1e5eff;
    --iqt-navy: #0b1f6a;
    --iqt-navy-deep: #071546;
    --iqt-blue-glow: #32c5ff;

    position: relative;
    overflow: hidden;
    width: 100%;
    color: #ffffff;
    background: linear-gradient(180deg, #0b1f6a 0%, #0a1a5c 100%);
}

#stats .iqt-stats-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(30, 94, 255, 0.08) 0%, rgba(30, 94, 255, 0) 72%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

#stats .iqt-stats-container {
    position: relative;
    z-index: 10;
    width: min(100% - 40px, 1320px);
    margin: 0 auto;
    padding: 96px 0;
}

#stats .iqt-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

#stats .iqt-stats-headline-tile,
#stats .iqt-stat-tile {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
}

#stats .iqt-stats-headline-tile {
    display: flex;
    min-height: 430px;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
    background: linear-gradient(145deg, var(--iqt-navy) 0%, var(--iqt-navy-deep) 100%);
}

#stats .iqt-stats-headline-glow {
    position: absolute;
    top: -96px;
    left: -96px;
    width: 256px;
    height: 256px;
    border-radius: 50%;
    background: rgba(30, 94, 255, 0.20);
    filter: blur(64px);
    opacity: 0.5;
    transition: opacity 350ms ease;
    pointer-events: none;
}

#stats .iqt-stats-headline-tile:hover .iqt-stats-headline-glow {
    opacity: 0.8;
}

#stats .iqt-stats-headline-content {
    position: relative;
    z-index: 2;
}

#stats .iqt-stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 5px 12px;
    border: 1px solid rgba(30, 94, 255, 0.30);
    border-radius: 999px;
    color: var(--iqt-primary);
    background: rgba(30, 94, 255, 0.10);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

#stats .iqt-stats-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--iqt-primary);
    animation: iqt-stats-pulse 1.8s ease-in-out infinite;
}

#stats .iqt-stats-headline-tile h2 {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

#stats .iqt-stats-title-main,
#stats .iqt-stats-title-gradient {
    display: block;
}

#stats .iqt-stats-title-gradient {
    color: transparent;
    background: linear-gradient(90deg, var(--iqt-primary), var(--iqt-blue-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#stats .iqt-stats-description {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 18px;
    line-height: 1.7;
}

#stats .iqt-stats-description p {
    margin: 0;
}

#stats .iqt-stat-tile {
    display: flex;
    min-height: 180px;
    padding: 32px;
    background: rgba(7, 21, 70, 0.40);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 300ms ease, border-color 300ms ease, background-color 300ms ease, box-shadow 300ms ease;
}

#stats .iqt-stat-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(30, 94, 255, 0.40);
    background: rgba(7, 21, 70, 0.56);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

#stats .iqt-stat-tile--compact {
    flex-direction: column;
    justify-content: flex-end;
}

#stats .iqt-stat-tile--wide {
    align-items: center;
    gap: 24px;
}

#stats .iqt-stat-corner-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
    color: var(--iqt-primary);
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#stats .iqt-stat-icon-box {
    display: flex;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(30, 94, 255, 0.20);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(30, 94, 255, 0.20), rgba(30, 94, 255, 0.05));
}

#stats .iqt-stat-icon-box svg {
    width: 28px;
    height: 28px;
    color: var(--iqt-primary);
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#stats .iqt-stat-copy {
    position: relative;
    z-index: 2;
}

#stats .iqt-stat-number {
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

#stats .iqt-stat-label {
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

#stats .iqt-stat-meta {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.50);
    font-size: 12px;
    line-height: 1.4;
}

#stats .iqt-stats-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease-out, transform 700ms ease-out, border-color 300ms ease, background-color 300ms ease, box-shadow 300ms ease;
    transition-delay: var(--iqt-stats-delay, 0ms);
}

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

@keyframes iqt-stats-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.82); }
}

@media (min-width: 768px) {
    #stats .iqt-stats-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-auto-rows: 180px;
    }

    #stats .iqt-stats-headline-tile {
        grid-column: span 8;
        grid-row: span 2;
        min-height: auto;
    }

    #stats .iqt-stat-tile--compact {
        grid-column: span 4;
        grid-row: span 1;
    }

    #stats .iqt-stat-tile--wide {
        grid-column: span 6;
        grid-row: span 1;
    }
}

@media (max-width: 767px) {
    #stats .iqt-stats-container {
        width: min(100% - 32px, 1320px);
        padding: 72px 0;
    }

    #stats .iqt-stats-headline-tile {
        min-height: 380px;
        padding: 32px;
    }

    #stats .iqt-stats-headline-tile h2 {
        font-size: 38px;
    }

    #stats .iqt-stats-description {
        font-size: 16px;
    }

    #stats .iqt-stat-tile {
        min-height: 170px;
        padding: 28px;
    }
}

@media (max-width: 479px) {
    #stats .iqt-stats-container {
        width: min(100% - 24px, 1320px);
        padding: 56px 0;
    }

    #stats .iqt-stats-headline-tile {
        min-height: 340px;
        padding: 26px;
        border-radius: 20px;
    }

    #stats .iqt-stats-headline-tile h2 {
        font-size: 32px;
    }

    #stats .iqt-stat-tile {
        min-height: 160px;
        padding: 24px;
        border-radius: 20px;
    }

    #stats .iqt-stat-tile--wide {
        gap: 18px;
    }

    #stats .iqt-stat-icon-box {
        flex-basis: 56px;
        width: 56px;
        height: 56px;
    }

    #stats .iqt-stat-number {
        font-size: 36px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #stats .iqt-stats-reveal,
    #stats .iqt-stat-tile,
    #stats .iqt-stats-headline-glow,
    #stats .iqt-stats-badge-dot {
        animation: none !important;
        transition: none !important;
    }

    #stats .iqt-stats-reveal {
        opacity: 1;
        transform: none;
    }
}