/* ============================================================
   Solutions / Offers — Prismatic (innovation studio)
   Modern, conversion-focused offer grid. Dark theme + brand gradient.
   ============================================================ */

.solutions-head {
    /* max-width: 820px; */
    margin: clamp(100px, 12vw, 190px) auto clamp(80px, 9vw, 140px) !important;
    text-align: center;
}
section#solutions {
    padding-top: 0px;
    padding-bottom: 80px;
}
.solutions-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
}

.solutions-title {
    font-size: clamp(46px, 3.4vw, 52px); 
    line-height: 1.15;
    color: #fff;
    margin: 0;
}

/* keep the brand gradient text inline inside the heading (it's display:block by default) */
.solutions-title .gradient_color {
    display: inline;
}

.solutions-sub {
    max-width: 620px;
    margin: 20px auto 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* ---- Trust strip (stats) — inline label + stats + dividers, hairline top/bottom
   borders. Adapted from the Ad Grants social-proof band, restyled for the dark home. ---- */
.hp-proof {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2.4vw, 32px);
    max-width: 1080px;
    margin: 0 auto;
    padding: 34px 0;
}
.hp-proof::before {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12) 30%, rgba(255, 255, 255, .12) 70%, transparent);
}
.hp-proof__label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, .5);
}
.hp-proof__stat { display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; }
.hp-proof__num {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: clamp(38px, 4.6vw, 56px);
    line-height: 1;
    letter-spacing: -1.5px;
    color: #fff;
}
.hp-proof__lbl { font-size: 12.5px; color: rgba(255, 255, 255, .55); white-space: nowrap; }
.hp-proof__div { width: 1px; height: 58px; flex-shrink: 0; background: rgba(255, 255, 255, .14); }
@media (max-width: 767px) {
    .hp-proof {
        display: grid;
        grid-template-columns: repeat(2, auto);
        justify-content: center;
        gap: 24px 46px;
        padding: 30px 0;
    }
    .hp-proof__label { grid-column: 1 / -1; text-align: center; }
    .hp-proof__num { font-size: 34px; }
    .hp-proof__div { display: none; }
}

/* ---- Trusted-clients logo marquee (below the stats). Logos become uniform white
   silhouettes to match the #clients section; edges fade via a mask. ---- */
.hp-logos {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 38px;
    padding-bottom: 34px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
/* bottom hairline sits BELOW the logos → frames the whole stats+logos band */
.hp-logos::after {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12) 30%, rgba(255, 255, 255, .12) 70%, transparent);
}
.hp-logos__track {
    display: inline-flex;
    align-items: center;
    gap: clamp(40px, 5vw, 64px);
    white-space: nowrap;
    animation: hpLogosScroll 42s linear infinite;
}
.hp-logos__track:hover { animation-play-state: paused; }
.hp-logos__img {
    flex: 0 0 auto;
    /* cap BOTH dimensions → wide wordmarks can't sprawl, all sit in a uniform box */
    max-height: 28px;
    max-width: 112px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) grayscale(100%);
    opacity: 0.5;
    transition: opacity .4s ease;
}
/* optical rebalancing: compact badge logos read too small at 28px */
.hp-logos__img[src*="ram"] { max-height: 38px; }
.hp-logos__img[src*="isladelice"] { max-height: 34px; }
.hp-logos__img:hover { opacity: 0.85; }
@keyframes hpLogosScroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .hp-logos__track { animation: none; } }
@media (max-width: 767px) {
    .hp-logos { margin-top: 28px; }
    .hp-logos__track { gap: 38px; }
    .hp-logos__img { max-height: 22px; max-width: 92px; }
    .hp-logos__img[src*="ram"] { max-height: 30px; }
    .hp-logos__img[src*="isladelice"] { max-height: 27px; }
}

/* ---- Grid ---- */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
/* full-bleed: open the triptych edge-to-edge on desktop (same technique as the team slider) */
@media (min-width: 992px) {
    .solutions-grid {
        position: relative;
        width: 100vw;
        max-width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        padding-left: clamp(20px, 2.6vw, 56px);
        padding-right: clamp(20px, 2.6vw, 56px);
        box-sizing: border-box;
        gap: clamp(20px, 2vw, 34px);
    }
}

/* ---- Card ---- */
.solution-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 26px 26px 30px;
    background: #191919;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    overflow: hidden;
    isolation: isolate;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .65s ease,
                transform .65s cubic-bezier(.16, .84, .44, 1),
                border-color .5s ease,
                box-shadow .5s ease;
    will-change: transform, opacity;
}

/* entrance (class toggled by GSAP ScrollTrigger) */
.solution-card.is-in {
    opacity: 1;
    transform: translateY(0);
}

/* top gradient accent line — grows on hover */
/* soft glow behind the card on hover */
.solution-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 90% at 50% 0%, var(--sc-glow, rgba(0, 0, 255, 0.12)), transparent 60%);
    opacity: 0;
    transition: opacity .55s ease;
    z-index: -1;
}

/* hover lift (scoped to in-view cards so it never fights the entrance transform) */
.solution-card.is-in:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.solution-card:hover::after {
    opacity: 1;
}

/* whole card clickable — the CTA becomes a stretched link covering the card (boss request) */
.solution-card { cursor: pointer; }
.solution-card__cta::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
}

/* big faint index */
.solution-card__index {
    position: absolute;
    top: 24px;
    right: 30px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    color: rgba(255, 255, 255, 0.06);
}

/* icon chip */
.solution-card__icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 26px;
    color: #fff;
    background: linear-gradient(145deg, rgba(0, 0, 255, 0.22), rgba(204, 0, 204, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: transform .5s cubic-bezier(.16, .84, .44, 1);
}

.solution-card__icon svg {
    width: 26px;
    height: 26px;
}

.solution-card.is-in:hover .solution-card__icon {
    transform: translateY(-2px) scale(1.05);
}

/* "coming soon" pill */
.solution-card__tag {
    align-self: flex-start;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 5px 12px;
    margin-bottom: 16px;
}

.solution-card__title {
    font-size: 21px;
    line-height: 1.3;
    letter-spacing: 0;
    color: #fff;
    margin: 0 0 8px;
}

.solution-card__desc {
    font-size: 15px;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.58);
    max-width: 360px;
    margin: 0 0 44px !important;
}

/* CTA pinned to the bottom → equal-height cards */
.solution-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: gap .35s ease, color .35s ease;
}

.solution-card__arrow {
    width: 18px;
    height: 18px;
    transition: transform .4s cubic-bezier(.16, .84, .44, 1);
}

.solution-card__cta:hover {
    gap: 13px;
    color: var(--sc-accent, #fff);
}

.solution-card__cta:hover .solution-card__arrow {
    transform: translate(3px, -3px);
}

.solution-card__cta:focus-visible {
    outline: 2px solid #4285F4;
    outline-offset: 4px;
    border-radius: 4px;
}

.solution-card__cta.is-disabled {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    pointer-events: none;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 520px;
        margin: 0 auto;
    }

    .solutions-head {
        margin-bottom: 48px;
    }
}

/* ============================================================
   Animated per-offer "living" mockups
   Every class is prefixed (sov-/geo-/grn-) and scoped to the viz.
   ============================================================ */
.solution-card__viz { margin: 0 0 40px; transition: transform .25s ease; transform-style: preserve-3d; will-change: transform; }

/* per-offer accent identity */
/* accents = the "Our Expertise" icon palette (#0047FF / #aa00ff / #ff00aa) for site-wide harmony */
.solution-card[data-viz="sov"] { --sc-accent: #0047FF; --sc-glow: hsla(224,100%,50%,.16); }
.solution-card[data-viz="geo"] { --sc-accent: #aa00ff; --sc-glow: hsla(280,100%,50%,.16); }
.solution-card[data-viz="grn"] { --sc-accent: #ff00aa; --sc-glow: hsla(320,100%,50%,.16); }
.solution-card[data-viz="agt"] { --sc-accent: #ff00aa; --sc-glow: hsla(320,100%,50%,.16); }

/* eyebrow (category) + benefit hook */
.solution-card__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #8e8e8e !important;
    margin-bottom: 12px;
}
.solution-card__hook {
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.42;
    letter-spacing: 0;
    color: #fff;
    max-width: 340px;
    margin: 0 0 24px;
}

/* ---- 01 · Digital Sovereignty (Private AI console) ---- */
.sov-screen{position:relative;width:100%;height:300px;border-radius:14px;overflow:hidden;border:1px solid rgba(255,255,255,.08);background:linear-gradient(160deg,#161618 0%,#101012 60%,#0d0d0f 100%);display:flex;flex-direction:column;font-family:inherit;color:#fff}
.sov-bar{display:flex;align-items:center;gap:7px;padding:8px 11px;border-bottom:1px solid rgba(255,255,255,.06);background:rgba(255,255,255,.02)}
.sov-dots{display:flex;gap:4px}
.sov-dot{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.16)}
.sov-lock{position:relative;width:11px;height:12px;margin-left:2px}
.sov-lock__body{position:absolute;bottom:0;width:11px;height:8px;border-radius:2px;background:linear-gradient(180deg,rgba(255,255,255,.85),rgba(255,255,255,.55))}
.sov-lock__shackle{position:absolute;top:0;left:2.5px;width:6px;height:6px;border:1.5px solid rgba(255,255,255,.7);border-bottom:none;border-radius:3px 3px 0 0}
.sov-title{font-size:11px;font-weight:600;letter-spacing:.2px;color:rgba(255,255,255,.82)}
.sov-body{flex:1;padding:9px 11px 10px;display:flex;flex-direction:column;gap:7px;min-height:0}
.sov-toggle{display:flex;align-items:center;gap:7px;font-size:9.5px}
.sov-toggle__opt{color:rgba(255,255,255,.34)}
.sov-toggle__opt--on{color:rgba(255,255,255,.9);font-weight:600}
.sov-switch{position:relative;width:30px;height:15px;border-radius:9px;background:rgba(255,255,255,.14);flex:0 0 auto;overflow:hidden}
.sov-switch__fill{position:absolute;inset:0;border-radius:9px;background:linear-gradient(90deg,hsl(240 100% 50%),hsl(290 100% 55%))}
.sov-switch__knob{position:absolute;top:2px;left:2px;width:11px;height:11px;border-radius:50%;background:#fff;transform:translateX(15px);z-index:1}
.sov-prompt{display:flex;align-items:flex-start;gap:6px;font-size:10.5px;color:rgba(255,255,255,.72);line-height:1.35}
.sov-prompt__q{color:rgba(255,255,255,.4);font-weight:700}
.sov-answer{display:flex;flex-direction:column;gap:6px}
.sov-answer__row{display:flex;align-items:flex-start;gap:6px}
.sov-shield{position:relative;flex:0 0 auto;width:15px;height:17px;margin-top:1px}
.sov-shield__base{position:absolute;inset:0;background:linear-gradient(150deg,hsl(240 100% 55%),hsl(290 100% 58%));clip-path:polygon(50% 0,100% 22%,100% 60%,50% 100%,0 60%,0 22%);opacity:.92}
.sov-shield__glow{position:absolute;inset:-6px;background:radial-gradient(circle,hsla(290,100%,60%,.5),transparent 68%);opacity:.6}
.sov-shield__check{position:absolute;left:4px;top:5.5px;width:5px;height:3px;border-left:1.5px solid #fff;border-bottom:1.5px solid #fff;transform:rotate(-45deg)}
.sov-answer__text{font-size:10.5px;line-height:1.4;color:rgba(255,255,255,.86);overflow:hidden;white-space:nowrap}
.sov-badge{display:inline-flex;align-items:center;gap:4px;align-self:flex-start;font-size:8.5px;font-weight:600;letter-spacing:.3px;padding:2px 7px;border-radius:20px;color:rgba(255,255,255,.85);background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1)}
.sov-badge__dot{width:5px;height:5px;border-radius:50%;background:hsl(140 70% 50%);box-shadow:0 0 5px hsla(140,70%,50%,.7)}
.sov-chip{margin-top:auto;display:inline-flex;align-items:center;gap:6px;align-self:flex-start;font-size:9.5px;font-weight:500;padding:4px 9px;border-radius:20px;color:#fff;background:linear-gradient(90deg,hsla(240,100%,55%,.16),hsla(290,100%,55%,.16));border:1px solid rgba(255,255,255,.12)}
.sov-chip__lock{width:7px;height:8px;position:relative;flex:0 0 auto}
.sov-chip__lockbody{position:absolute;bottom:0;width:7px;height:5px;border-radius:1.5px;background:hsl(290 100% 72%)}
.sov-chip__lockshackle{position:absolute;top:0;left:1.5px;width:4px;height:4px;border:1.2px solid hsl(290 100% 72%);border-bottom:none;border-radius:2px 2px 0 0}
/* Digital Vault — sovereign stack (tools + data + AI) */
.sov-seal{margin-left:auto;display:inline-flex;align-items:center;gap:4px;font-size:8px;font-weight:700;letter-spacing:.7px;color:rgba(255,255,255,.6)}
.sov-seal__dot{width:5px;height:5px;border-radius:50%;background:hsl(140 70% 50%);box-shadow:0 0 5px hsla(140,70%,50%,.7)}
.sov-vault{display:flex;flex-direction:column;justify-content:center;gap:10px;flex:1;min-height:0}
.sov-tool{display:flex;align-items:center;gap:10px;padding:8px 11px;border-radius:9px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.07)}
.sov-tool__ico{flex:0 0 auto;width:16px;height:16px;border-radius:5px;background:linear-gradient(135deg,hsl(240 100% 60%),hsl(290 100% 62%))}
.sov-tool__ico--ws{background:linear-gradient(135deg,hsl(200 100% 55%),hsl(250 100% 62%))}
.sov-tool__ico--msg{background:linear-gradient(135deg,hsl(280 100% 60%),hsl(330 100% 62%))}
.sov-tool__ico--data{background:linear-gradient(135deg,hsl(330 100% 60%),hsl(18 100% 60%))}
.sov-tool__name{flex:1;font-size:11px;color:rgba(255,255,255,.82)}
.sov-tool__lock{position:relative;flex:0 0 auto;width:11px;height:12px}
.sov-tool__lock::before{content:"";position:absolute;bottom:0;left:0;width:11px;height:8px;border-radius:2px;background:var(--sc-accent,rgba(255,255,255,.85))}
.sov-tool__lock::after{content:"";position:absolute;top:0;left:2.5px;width:6px;height:6px;border:1.5px solid var(--sc-accent,rgba(255,255,255,.7));border-bottom:none;border-radius:3px 3px 0 0}

/* ---- 02 · GEO (AI answer that cites your brand) ---- */
.geo-screen{position:relative;box-sizing:border-box;width:100%;height:300px;border-radius:14px;overflow:hidden;border:1px solid rgba(255,255,255,.08);background:linear-gradient(160deg,#161616,#101010);font-family:inherit;color:#fff;-webkit-font-smoothing:antialiased}
.geo-screen *{box-sizing:border-box}
.geo-bar{display:flex;align-items:center;gap:8px;height:26px;padding:0 10px;background:rgba(255,255,255,.03);border-bottom:1px solid rgba(255,255,255,.06)}
.geo-dots{display:flex;gap:5px}
.geo-dot{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.18)}
.geo-title{display:inline-flex;align-items:center;gap:5px;font-size:10px;font-weight:600;letter-spacing:.3px;color:rgba(255,255,255,.55)}
.geo-spark{width:9px;height:9px;border-radius:2px;background:linear-gradient(135deg,hsl(240 100% 50%),hsl(290 100% 55%),hsl(0 100% 55%));box-shadow:0 0 6px rgba(150,60,255,.5)}
.geo-body{padding:11px 12px 10px}
.geo-query{display:flex;align-items:center;gap:7px;margin-bottom:9px}
.geo-avatar{flex:none;font-size:8px;font-weight:700;letter-spacing:.5px;color:rgba(255,255,255,.55);padding:3px 5px;border-radius:6px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08)}
.geo-qtext{font-size:12px;font-weight:500;color:rgba(255,255,255,.82)}
.geo-think{display:flex;gap:5px;height:10px;align-items:center;margin:2px 0 4px 34px}
.geo-tdot{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,.4)}
.geo-answer{margin-left:34px}
.geo-line{position:relative;margin:0 0 4px;font-size:12px;line-height:1.45;color:rgba(255,255,255,.72)}
.geo-txt--dim{color:rgba(255,255,255,.5)}
.geo-chip{position:relative;display:inline-block;font-size:12px;font-weight:700;color:#fff;padding:1px 7px;border-radius:7px;background:linear-gradient(120deg,hsl(240 100% 50%),hsl(290 100% 55%),hsl(0 100% 55%));box-shadow:0 2px 10px rgba(140,50,255,.35)}
.geo-cite{font-size:8px;font-weight:700;margin-left:1px;top:-.5em}
.geo-sources{display:flex;gap:6px;margin:11px 0 0 34px}
.geo-src{display:inline-flex;align-items:center;gap:5px;font-size:10px;font-weight:600;color:rgba(255,255,255,.62);padding:4px 8px;border-radius:20px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.09)}
.geo-fav{width:8px;height:8px;border-radius:50%;flex:none}
.geo-fav--gpt{background:#10a37f}
.geo-fav--gem{background:linear-gradient(135deg,#4285f4,#9b72cb,#d96570)}
.geo-fav--pxy{background:#20b8cd}
.geo-fav--claude{background:#d97757}

/* ---- 03 · Google Ad Grants (Search + free-credit counter) ---- */
.grn-screen{position:relative;width:100%;height:300px;border-radius:14px;overflow:hidden;border:1px solid rgba(255,255,255,.08);background:linear-gradient(180deg,#161616 0%,#121212 100%);font-family:inherit;color:#fff;box-sizing:border-box;display:flex;flex-direction:column}
.grn-screen *{box-sizing:border-box}
.grn-bar{display:flex;align-items:center;gap:6px;padding:0 10px;height:26px;flex:0 0 26px;background:rgba(255,255,255,.03);border-bottom:1px solid rgba(255,255,255,.06)}
.grn-dot{width:8px;height:8px;border-radius:50%;opacity:.9}
.grn-dot--r{background:#ff5f57}
.grn-dot--y{background:#febc2e}
.grn-dot--g{background:#28c840}
.grn-url{display:flex;align-items:center;gap:5px;margin-left:6px;padding:2px 9px;background:rgba(255,255,255,.06);border-radius:20px;height:16px}
.grn-lock{width:6px;height:5px;border-radius:1px;background:rgba(255,255,255,.45);position:relative;margin-top:2px}
.grn-lock::before{content:"";position:absolute;left:1px;top:-3px;width:4px;height:4px;border:1.2px solid rgba(255,255,255,.45);border-bottom:none;border-radius:3px 3px 0 0}
.grn-urltxt{font-size:10px;color:rgba(255,255,255,.55);letter-spacing:.2px}
.grn-body{flex:1;padding:11px 12px 10px;display:flex;flex-direction:column;gap:9px;min-height:0}
.grn-search{display:flex;align-items:center;gap:8px;padding:0 10px;height:30px;flex:0 0 30px;background:#1c1c1c;border:1px solid rgba(255,255,255,.10);border-radius:16px;position:relative}
.grn-gdot{position:relative;width:13px;height:13px;flex:0 0 13px;display:block}
.grn-q{position:absolute;width:6px;height:6px}
.grn-q1{top:0;left:0;background:#4285f4;border-radius:6px 0 0 0}
.grn-q2{top:0;right:0;background:#ea4335;border-radius:0 6px 0 0}
.grn-q3{bottom:0;left:0;background:#34a853;border-radius:0 0 0 6px}
.grn-q4{bottom:0;right:0;background:#fbbc05;border-radius:0 0 6px 0}
.grn-query{font-size:12.5px;color:rgba(255,255,255,.90);white-space:nowrap;overflow:hidden}
.grn-caret{width:1.5px;height:14px;background:hsl(240 100% 60%);border-radius:1px;margin-left:-4px}
.grn-result{padding:8px 10px;border-radius:10px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06)}
.grn-resline{display:flex;align-items:center;gap:7px;margin-bottom:3px}
.grn-adbadge{font-size:9px;font-weight:700;line-height:1;padding:2px 5px;border-radius:4px;color:#dfe7ff;background:rgba(66,133,244,.18);border:1px solid rgba(66,133,244,.35);letter-spacing:.3px}
.grn-green{font-size:10.5px;color:#5ec27e}
.grn-title{font-size:12.5px;font-weight:600;color:#fff;line-height:1.15;margin-bottom:2px}
.grn-desc{font-size:10px;color:rgba(255,255,255,.45);line-height:1.25}
.grn-strip{display:flex;align-items:stretch;gap:7px;margin-top:auto}
.grn-chip{display:flex;flex-direction:column;gap:2px;padding:5px 8px;border-radius:9px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.07);min-width:0}
.grn-chip--accent{background:linear-gradient(120deg,hsla(240,100%,50%,.16),hsla(290,100%,55%,.14));border:1px solid hsla(270,100%,60%,.32);flex:1}
.grn-chiplabel{font-size:9px;color:rgba(255,255,255,.45);letter-spacing:.2px;white-space:nowrap}
.grn-chipval{font-size:12.5px;font-weight:700;color:#fff;white-space:nowrap}
.grn-chipval em{font-style:normal;font-size:9.5px;font-weight:600;color:rgba(255,255,255,.55)}
.grn-chip--accent .grn-chipval{background:linear-gradient(90deg,hsl(240 100% 68%),hsl(290 100% 70%),hsl(0 100% 68%));-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
.grn-chart{display:flex;align-items:flex-end;gap:3px;padding:5px 7px;border-radius:9px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.07)}
.grn-b{width:4px;border-radius:2px;background:linear-gradient(180deg,hsl(240 100% 62%),hsl(290 100% 62%));transform-origin:bottom}
.grn-b1{height:9px}
.grn-b2{height:15px}
.grn-b3{height:12px}
.grn-b4{height:20px}
.grn-b5{height:26px}

/* ---- 03 · Omni — Agentic AI (autonomous agent pipeline) ---- */
.agt-screen{position:relative;width:100%;height:300px;border-radius:14px;overflow:hidden;border:1px solid rgba(255,255,255,.08);background:linear-gradient(160deg,#161618 0%,#101012 60%,#0d0d0f 100%);display:flex;flex-direction:column;font-family:inherit;color:#fff;box-sizing:border-box}
.agt-screen *{box-sizing:border-box}
.agt-bar{display:flex;align-items:center;gap:7px;height:26px;flex:0 0 26px;padding:0 11px;border-bottom:1px solid rgba(255,255,255,.06);background:rgba(255,255,255,.02)}
.agt-dots{display:flex;gap:4px}
.agt-dot{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.16)}
.agt-title{display:inline-flex;align-items:center;gap:5px;font-size:10.5px;font-weight:600;letter-spacing:.2px;color:rgba(255,255,255,.7)}
.agt-spark{width:9px;height:9px;border-radius:2px;background:linear-gradient(135deg,hsl(240 100% 55%),hsl(300 100% 60%),hsl(330 100% 60%));box-shadow:0 0 6px rgba(220,60,200,.5)}
.agt-live{margin-left:auto;display:inline-flex;align-items:center;gap:4px;font-size:8px;font-weight:700;letter-spacing:.6px;color:rgba(255,255,255,.55)}
.agt-live__dot{width:5px;height:5px;border-radius:50%;background:hsl(140 70% 50%);box-shadow:0 0 5px hsla(140,70%,50%,.7)}
.agt-body{flex:1;padding:10px 12px;display:flex;flex-direction:column;gap:9px;min-height:0}
.agt-task{display:flex;align-items:flex-start;gap:6px;font-size:10.5px;color:rgba(255,255,255,.74);line-height:1.35}
.agt-task__q{color:var(--sc-accent,rgba(255,255,255,.4));font-weight:700}
.agt-flow{position:relative;display:flex;flex-direction:column;gap:9px;padding-left:2px}
.agt-flow::before{content:"";position:absolute;left:6px;top:7px;bottom:7px;width:1px;background:rgba(255,255,255,.1)}
.agt-step{position:relative;display:flex;align-items:center;gap:9px}
.agt-step__node{position:relative;flex:0 0 auto;width:9px;height:9px;border-radius:50%;background:rgba(255,255,255,.18);border:1px solid rgba(255,255,255,.28);z-index:1}
.agt-step__name{flex:0 0 auto;min-width:78px;font-size:10.5px;color:rgba(255,255,255,.82);white-space:nowrap}
.agt-step__track{position:relative;flex:1;height:4px;border-radius:3px;background:rgba(255,255,255,.08);overflow:hidden}
.agt-step__fill{position:absolute;inset:0;border-radius:3px;transform-origin:left center;background:linear-gradient(90deg,hsl(240 100% 60%),hsl(300 100% 62%),hsl(330 100% 62%))}
.agt-step__check{position:relative;flex:0 0 auto;width:14px;height:14px;border-radius:50%;background:var(--sc-accent,hsl(330 100% 72%))}
.agt-step__check::after{content:"";position:absolute;left:5px;top:3px;width:3.5px;height:6px;border:1.5px solid #0d0d0f;border-top:none;border-left:none;transform:rotate(45deg)}
.agt-done{margin-top:auto;display:inline-flex;align-items:center;gap:6px;align-self:flex-start;font-size:9.5px;font-weight:600;padding:4px 9px;border-radius:20px;color:#fff;background:linear-gradient(90deg,hsla(240,100%,55%,.16),hsla(330,100%,55%,.16));border:1px solid rgba(255,255,255,.12)}
.agt-done__check{position:relative;flex:0 0 auto;width:11px;height:11px;border-radius:50%;background:hsl(140 70% 50%)}
.agt-done__check::after{content:"";position:absolute;left:4px;top:2.5px;width:2.5px;height:5px;border:1.4px solid #0d0d0f;border-top:none;border-left:none;transform:rotate(45deg)}

/* ---- Respect reduced-motion: no entrance / hover / tilt.
   Mockups render their static finished state (JS skips the timelines). ---- */
@media (prefers-reduced-motion: reduce) {
    .solution-card,
    .solution-card__viz,
    .solution-card::before,
    .solution-card__icon,
    .solution-card__cta,
    .solution-card__arrow {
        transition: none !important;
    }
    .solution-card {
        opacity: 1 !important;
        transform: none !important;
    }
    .solution-card:hover,
    .solution-card.is-in:hover,
    .solution-card__viz {
        transform: none !important;
    }
}

/* ============================================================
   Expertise header — title left, CTA right (mid-page conversion off-ramp)
   ============================================================ */
.exp-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.exp-head #services_top_title { margin: 0; }
/* the button itself reuses the site's primary component (.crv-butn) */
.exp-head .crv-butn { flex: 0 0 auto; }
@media (max-width: 767px) {
    /* stacked: give the CTA real breathing room under the title (was collé) */
    .exp-head { justify-content: flex-start; gap: 30px; }
    .exp-head #services_top_title { margin-bottom: 4px; }
}

/* ============================================================
   Post-Projects conversion off-ramp band (button = the site's .crv-butn)
   ============================================================ */
.work-cta { padding: clamp(56px, 8vw, 100px) 0; }
.work-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
}
.work-cta__line {
    font-family: "Poppins", sans-serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.5px;
    color: #fff !important;
    margin: 0;
    max-width: 760px;
}
/* keep the gradient-underline word on its own baseline so it can't clip */
.work-cta__line .gradient_border { display: inline-block; }
