/* ============================================================================
   IRISYO × REDLIGHT — Design system
   Redlight cyber-security design line, re-based to the Irisyo blue palette
   (no red), full-dark. Jost display + JetBrains Mono for data readouts.
   Layered over the Xpovio theme (main.min.css + brand.css).
   ============================================================================ */

:root {
    /* Surfaces — cool near-black (Redlight #161616 warm → cool/neutral) */
    --ink:        #0e1217;   /* base */
    --ink-2:      #141a21;   /* raised */
    --ink-3:      #1a222b;   /* panel top */
    --line:       rgba(255, 255, 255, 0.08);
    --line-2:     rgba(255, 255, 255, 0.045);

    /* Card gradient (Redlight dark-marron→dark, re-hued to deep blue) */
    --deep-blue:  #16304a;   /* replaces dark-marron #4a2424 */
    --card-grad:  linear-gradient(147deg, #1c3146 -85%, #12171d 42%);
    --card-grad-2:linear-gradient(134deg, #17222e 8%, #12171d 60%);
    --form-bg:    #14202a;   /* replaces #2e1c1c */

    /* Accent — Irisyo blue (replaces red #f43334 / #c12e2f / #cd3030) */
    --blue:        #0175c2;
    --blue-bright: #2f9fdd;
    --blue-deep:   #025a96;
    --blue-active: #0d82d4;

    /* Text */
    --text:        #f1f4f7;
    --muted:       rgba(241, 244, 247, 0.60);
    --muted-soft:  rgba(241, 244, 247, 0.40);

    /* Type */
    --font: 'Jost', ui-sans-serif, system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;

    /* Glow + shadow */
    --glow: rgba(1, 117, 194, 0.28);
    --shadow: 0 30px 70px -30px rgba(1, 92, 160, 0.55), 0 10px 30px -16px rgba(0, 0, 0, 0.6);
}

/* ---------------------------------------------------------------------------
   1. BASE
   --------------------------------------------------------------------------- */
html { scroll-behavior: smooth; }

body.my-app, .my-app {
    background-color: var(--ink) !important;
    color: var(--text);
    font-family: var(--font) !important;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
#smooth-content { background: var(--ink); }
::selection { background: var(--blue); color: #fff; }

/* subtle grain */
.my-app::after {
    content: ""; position: fixed; inset: 0; z-index: 9000; pointer-events: none;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------------------------
   2. TYPOGRAPHY — Jost
   --------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, .title {
    font-family: var(--font) !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.08 !important;
    color: var(--text);
    text-transform: none !important;
    text-wrap: balance;
}
.title { font-size: clamp(2rem, 4vw, 3.25rem) !important; font-weight: 700 !important; }

/* two-tone heading: accent keyword */
.kw { color: var(--blue-bright) !important; }

p { text-wrap: pretty; }
.paragraph p, .paragraph {
    font-family: var(--font) !important;
    font-size: 1.0625rem !important;
    line-height: 1.7 !important;
    color: var(--muted);
    max-width: 62ch;
}

/* Eyebrow — Redlight style: uppercase tracked w/ leading rule (accent) */
.sub-title {
    font-family: var(--font) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    color: var(--blue-bright) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.7em;
}
.sub-title::before {
    content: ""; width: 26px; height: 2px; background: var(--blue); display: inline-block;
}
.sub-title i { display: none !important; }

/* mono data readouts only */
.mono, .inst-coord, .inst-label { font-family: var(--font-mono) !important; font-variant-numeric: tabular-nums; }

/* ---------------------------------------------------------------------------
   3. "LIGHT" SECTIONS → kept dark (Redlight is all-dark), alt panel tone
   --------------------------------------------------------------------------- */
.section.light, .section.fade-wrapper.light {
    background-color: var(--ink-2) !important;
    color: var(--text);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.section.light .title, .section.light h1, .section.light h2, .section.light h3 { color: var(--text) !important; }
.section.light .paragraph, .section.light .paragraph p { color: var(--muted); }

/* ---------------------------------------------------------------------------
   4. BUTTONS — Redlight pill
   --------------------------------------------------------------------------- */
.btn, a.btn {
    font-family: var(--font) !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    border-radius: 100px !important;
    padding: 1em 1.9em !important;
    transition: filter 0.16s ease, background-color 0.16s ease, border-color 0.16s ease !important;
    position: relative; overflow: visible;
}
/* kill the theme's sliding colour-fill hover animation on every button */
.btn::before, .btn::after,
.btn--primary::before, .btn--secondary::before, .btn--tertiary::before {
    content: none !important; display: none !important;
}
.btn.btn--primary, a.btn.btn--primary {
    background-color: var(--blue) !important;
    border: 1px solid var(--blue) !important;
    color: #fff !important;
    box-shadow: 0 10px 30px -10px var(--glow);
}
/* simple hover — no colour change, no blob, no movement */
.btn.btn--primary:hover, a.btn.btn--primary:hover {
    background-color: var(--blue) !important;
    border-color: var(--blue) !important;
    filter: brightness(0.9); transform: none !important;
}
.btn.btn--secondary, a.btn.btn--secondary {
    background: transparent !important;
    border: 1px solid var(--line) !important;
    color: var(--text) !important;
}
.btn.btn--secondary:hover, a.btn.btn--secondary:hover {
    border-color: rgba(255, 255, 255, 0.26) !important;
    color: var(--text) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    transform: none !important;
}

/* ---------------------------------------------------------------------------
   5. HEADER / NAV
   --------------------------------------------------------------------------- */
.header .primary-navbar, .header .cmn-nav {
    background: rgba(14, 18, 23, 0.78) !important;
    backdrop-filter: blur(14px) saturate(1.1);
    border-bottom: 1px solid var(--line);
}
.navbar__menu ul li a, .navbar__menu a {
    font-family: var(--font) !important;
    font-size: 0.84rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: var(--muted) !important;
    transition: color 0.15s ease;
}
.navbar__menu ul li a:hover, .navbar__menu ul li.active a { color: var(--text) !important; }
.navbar__menu ul li a::before {
    content: ""; display: inline-block; width: 0; height: 2px; margin-right: 0;
    background: var(--blue); vertical-align: middle; transition: width 0.2s ease, margin 0.2s ease;
}
.navbar__menu ul li a:hover::before, .navbar__menu ul li.active a::before { width: 14px; margin-right: 0.5em; }
.lang-switch a { font-family: var(--font) !important; color: var(--text); text-decoration: none; }
.nav-linkedin { border-color: var(--line) !important; color: var(--muted) !important; }
.nav-linkedin:hover { border-color: var(--blue) !important; color: var(--blue-bright) !important; }

/* Nav dropdown (Solutions) */
.navbar__item.has-dropdown { position: relative; }
.nav-caret { font-size: 0.6em; margin-left: 0.45em; transition: transform 0.2s ease; opacity: 0.7; }
.navbar__item.has-dropdown:hover .nav-caret { transform: rotate(180deg); }
.nav-dropdown {
    position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
    min-width: 272px; padding: 7px; margin-top: 12px;
    background: rgba(14, 19, 26, 0.97); backdrop-filter: blur(18px) saturate(1.1);
    border: 1px solid var(--line); border-radius: 11px; box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 60;
}
.nav-dropdown::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.navbar__item.has-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav-dropdown__item {
    display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 8px;
    text-decoration: none; transition: background 0.15s ease; position: relative;
}
/* per-item industry colour (--nd / --nd-rgb set inline per solution) */
.nav-dropdown__item:hover { background: rgba(var(--nd-rgb, 1,117,194), 0.13); }
.nav-dropdown__item.active { background: rgba(var(--nd-rgb, 1,117,194), 0.10); }
/* dropdown items only highlight — no inherited bullet / shift / scale */
.nav-dropdown__item::before { content: none !important; display: none !important; }
.nav-dropdown__item, .nav-dropdown__item:hover { transform: none !important; }
.nd-icon {
    width: 30px; height: 30px; flex: 0 0 auto; border-radius: 7px; display: inline-flex; align-items: center; justify-content: center;
    background: rgba(var(--nd-rgb, 1,117,194), 0.10); border: 1px solid rgba(var(--nd-rgb, 47,159,221), 0.22);
    color: var(--nd, var(--blue-bright)); font-size: 0.85rem; transition: background 0.15s ease, border-color 0.15s ease;
}
.nav-dropdown__item:hover .nd-icon { background: rgba(var(--nd-rgb, 1,117,194), 0.20); border-color: var(--nd, var(--blue-bright)); }
.nav-dropdown__item:hover .nd-name { color: var(--nd, var(--text)); }
.nd-text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.nd-name { font-family: var(--font); font-weight: 500; font-size: 0.9rem; color: var(--text); letter-spacing: 0; text-transform: none; line-height: 1.25; transition: color 0.15s ease; }
.nd-desc { font-family: var(--font); font-size: 0.73rem; color: var(--muted-soft); letter-spacing: 0; text-transform: none; line-height: 1.25; }
.nd-arrow { display: none; }

/* ---------------------------------------------------------------------------
   6. CARDS / PANELS — Redlight gradient panels
   --------------------------------------------------------------------------- */
.inst-card {
    position: relative;
    background: var(--card-grad);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 34px 30px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}
.inst-card:hover {
    transform: translateY(-4px);
    border-color: rgba(47, 159, 221, 0.4);
    box-shadow: var(--shadow);
}
.inst-card__idx {
    font-family: var(--font-mono);
    font-size: 0.72rem; letter-spacing: 0.12em; color: var(--blue-bright);
}
.inst-card__icon {
    width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--line); border-radius: 8px; color: var(--blue-bright);
    font-size: 1.15rem; margin-bottom: 20px; background: rgba(1, 117, 194, 0.06);
}
.inst-card h3 { font-size: 1.3rem; margin: 0 0 12px; }
.inst-card p { color: var(--muted); font-size: 0.97rem; line-height: 1.6; margin: 0; }
.inst-card .more {
    font-family: var(--font); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--blue-bright); margin-top: 20px; display: inline-flex; gap: 0.5em; align-items: center;
}
.inst-card .more i { transition: transform 0.2s ease; }
.inst-card:hover .more i { transform: translate(3px, -3px); }

/* corner-tick framed media (kept from instrument) */
.inst-frame {
    position: relative; border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.inst-frame::before, .inst-frame::after,
.inst-frame > .tick-bl, .inst-frame > .tick-br {
    content: ""; position: absolute; width: 10px; height: 10px; border-color: var(--blue); border-style: solid;
}
.inst-frame::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.inst-frame::after  { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
.inst-frame > .tick-bl { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }
.inst-frame > .tick-br { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }

/* ---------------------------------------------------------------------------
   7. INSTRUMENT PRIMITIVES (eye-tracking signature, recolored)
   --------------------------------------------------------------------------- */
.inst-label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.inst-coord { color: var(--blue-bright); font-size: 0.72rem; letter-spacing: 0.06em; }

.inst-reticle { position: relative; width: 28px; height: 28px; display: inline-block; flex: 0 0 auto; }
.inst-reticle::before, .inst-reticle::after { content: ""; position: absolute; background: var(--blue); }
.inst-reticle::before { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-0.5px); }
.inst-reticle::after  { top: 50%; left: 0; height: 1px; width: 100%; transform: translateY(-0.5px); }
.inst-reticle > span { position: absolute; inset: 8px; border: 1px solid var(--blue); border-radius: 50%; }

.inst-grid-bg {
    background-image:
        linear-gradient(var(--line-2) 1px, transparent 1px),
        linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
    background-size: 64px 64px;
}

/* ambient corner glow (Redlight red bleed → blue) */
.glow-tl, .glow-br { position: absolute; pointer-events: none; border-radius: 50%; filter: blur(70px); z-index: 0; }
.glow-tl { top: -120px; left: -120px; width: 420px; height: 420px; background: radial-gradient(circle, var(--glow), transparent 70%); }
.glow-br { bottom: -160px; right: -100px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(13,130,212,0.20), transparent 70%); }

/* big stat (Redlight numbers) */
.inst-stat .v { font-family: var(--font); font-weight: 700; font-size: clamp(1.9rem, 3.4vw, 2.8rem); color: var(--text); display: block; line-height: 1; letter-spacing: -0.01em; }
.inst-stat .v .mono { font-family: var(--font) !important; } /* keep stats in Jost, big */
.inst-stat .k { font-family: var(--font); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.7em; display: block; }

/* ---------------------------------------------------------------------------
   8. OFFER LIST (theme .offer__cta) → dark instrument rows
   --------------------------------------------------------------------------- */
.offer__cta { gap: 0 !important; }
.offer__cta-single {
    border-top: 1px solid var(--line);
    padding: 28px 0 !important;
    transition: padding-left 0.25s ease;
}
.offer__cta-single:last-child { border-bottom: 1px solid var(--line); }
.offer__cta-single:hover { padding-left: 14px !important; }
.offer__cta-single .sub-title { margin-bottom: 10px; }
.offer__cta-single h2 { font-size: clamp(1.35rem, 2.4vw, 1.9rem) !important; }
.offer__cta-single h2 a { color: var(--text) !important; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.offer__cta-single h2 a:hover { color: var(--blue-bright) !important; }
.offer__cta-single h2 a i { color: var(--blue); font-size: 0.7em; }

/* ---------------------------------------------------------------------------
   9. CTA BAND
   --------------------------------------------------------------------------- */
.cta-two {
    background: linear-gradient(160deg, #11161c 0%, #0e1217 60%) !important;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    position: relative; overflow: hidden;
}
.cta-two .title { color: var(--text) !important; font-size: clamp(2rem, 4vw, 3rem) !important; }

/* ---------------------------------------------------------------------------
   10. FOOTER
   --------------------------------------------------------------------------- */
.footer-two, .footer-cmn { background: var(--ink) !important; border-top: 1px solid var(--line); color: var(--text); }
.footer-two__left .paragraph p { color: var(--muted); }
.footer__single-meta a, .footer__copyright a, .footer__copyright p {
    font-family: var(--font) !important; font-size: 0.86rem; letter-spacing: 0.02em; color: var(--muted) !important;
}
.footer__single-meta a:hover, .footer__copyright a:hover { color: var(--blue-bright) !important; }
.footer__copyright { border-top: 1px solid var(--line); }
.folks-text { font-family: var(--font) !important; }

/* ---------------------------------------------------------------------------
   11. REVEAL ANIMATION
   --------------------------------------------------------------------------- */
.reveal {
    opacity: 0; transform: translateY(22px);
    transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
    will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------------------------------------------------------------------------
   12. HERO
   --------------------------------------------------------------------------- */
.inst-hero {
    position: relative; min-height: 100dvh; display: flex; align-items: center;
    padding: 150px 0 90px; overflow: hidden; background: var(--ink);
}
.inst-hero__readout { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.2rem; flex-wrap: wrap; }
.inst-hero__readout .bar { flex: 1; height: 1px; background: var(--line); min-width: 40px; }
.inst-hero h1 {
    font-size: clamp(2.8rem, 6.6vw, 6rem) !important;
    font-weight: 700 !important; letter-spacing: -0.02em !important; line-height: 1.02 !important;
    margin: 0 0 1.6rem !important; color: var(--text);
}
.inst-hero h1 .stroke { -webkit-text-stroke: 1.4px var(--blue); color: transparent; }
.inst-hero h1 .kw { color: var(--blue-bright); }
.inst-hero__sub {
    font-family: var(--font); font-size: clamp(1rem, 1.4vw, 1.2rem) !important; line-height: 1.7 !important;
    color: var(--muted) !important; max-width: 58ch; margin-bottom: 2.4rem !important;
}
.inst-hero__stats { display: flex; gap: 3.5rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.inst-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.inst-hero__plot {
    position: absolute; top: 0; right: 0; bottom: 0; width: 44%; pointer-events: none; opacity: 0.95; z-index: 1;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 32%); mask-image: linear-gradient(90deg, transparent, #000 32%);
}
@media (max-width: 991px) { .inst-hero__plot { display: none; } }
.inst-hero .lines .line { background: var(--line) !important; }

/* ---------------------------------------------------------------------------
   13. SHARED
   --------------------------------------------------------------------------- */
.section { position: relative; }
.brand-star { opacity: 0.04 !important; filter: grayscale(1); }
.agency img { border-radius: 4px !important; }
.inst-rule { height: 1px; background: var(--line); border: 0; margin: 0; }
#preloader { background: var(--ink) !important; }

/* ---------------------------------------------------------------------------
   14. REDLIGHT-FAITHFUL COMPONENTS
   --------------------------------------------------------------------------- */

/* Circular play button (Redlight "discover + play") */
.play-btn {
    display: inline-flex; align-items: center; gap: 0.85em;
    text-decoration: none; color: var(--text); font-family: var(--font);
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.play-btn .ring {
    width: 52px; height: 52px; border-radius: 50%;
    border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center;
    color: var(--blue-bright); position: relative; transition: border-color 0.2s ease, transform 0.2s ease;
}
.play-btn .ring::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    border: 1px solid var(--blue); opacity: 0.4; animation: playpulse 2.4s ease-out infinite;
}
@keyframes playpulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.45); opacity: 0; } }
.play-btn:hover .ring { border-color: var(--blue); transform: scale(1.05); color: var(--text); }

/* Floating accent sphere (Redlight red sphere → blue) */
.inst-sphere {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle at 32% 28%, #6fc4f0 0%, #2f9fdd 34%, #0175c2 64%, #034a7e 100%);
    box-shadow: 0 30px 60px -18px rgba(1, 117, 194, 0.7), inset -8px -10px 24px rgba(0,0,0,0.4);
    z-index: 3;
}
.inst-sphere.sm { width: 26px; height: 26px; }

/* Angled image panel (Redlight floating panel) */
.inst-tilt {
    position: relative; border-radius: 8px; overflow: visible;
    transform: perspective(1400px) rotateY(-14deg) rotateX(3deg);
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.inst-tilt:hover { transform: perspective(1400px) rotateY(-7deg) rotateX(1deg); }
.inst-tilt img { display: block; width: 100%; height: auto; border-radius: 8px; border: 1px solid var(--line); box-shadow: var(--shadow); }

/* Info cards under hero (Redlight cards-outer, vertical-bar-line) */
.info-cards { position: relative; z-index: 4; margin-top: -40px; }
.info-card {
    background: var(--card-grad-2); border: 1px solid var(--line); border-radius: 10px;
    padding: 26px 26px; height: 100%; transition: transform 0.25s ease, border-color 0.25s ease;
}
.info-card:hover { transform: translateY(-4px); border-color: rgba(47,159,221,0.35); }
.info-card .bar-k {
    font-family: var(--font); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--blue-bright); padding-left: 14px; position: relative; display: inline-block; margin-bottom: 14px;
}
.info-card .bar-k::before { content: ""; position: absolute; left: 0; top: 2px; bottom: 2px; width: 3px; background: var(--blue); }
.info-card p { color: var(--muted); font-size: 0.96rem; line-height: 1.6; margin: 0; }

/* Why cards — round icon gradient cards (Redlight "Why Choose Us") */
.why-card {
    background: var(--card-grad); border: 1px solid var(--line); border-radius: 12px;
    padding: 40px 34px; height: 100%; transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative; overflow: hidden;
}
.why-card:hover { transform: translateY(-5px); border-color: rgba(47,159,221,0.4); box-shadow: var(--shadow); }
.why-card .round {
    width: 66px; height: 66px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    background: rgba(1,117,194,0.10); border: 1px solid rgba(47,159,221,0.3); color: var(--blue-bright);
    font-size: 1.5rem; margin-bottom: 24px;
}
.why-card .idx { position: absolute; top: 28px; right: 30px; font-family: var(--font-mono); font-size: 0.74rem; color: var(--muted-soft); }
.why-card h3 { font-size: 1.4rem; margin: 0 0 14px; }
.why-card p { color: var(--muted); font-size: 1rem; line-height: 1.65; margin: 0; }

/* Counter / stats band (Redlight counters) */
.counter-band { background: linear-gradient(160deg, #11171e 0%, #0e1217 70%) !important; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.counter { text-align: center; padding: 18px 10px; position: relative; }
.counter + .counter::before { content: ""; position: absolute; left: 0; top: 18%; bottom: 18%; width: 1px; background: var(--line); }
.counter .v { font-family: var(--font); font-weight: 700; font-size: clamp(2.4rem, 4.6vw, 3.8rem); line-height: 1; color: var(--text); letter-spacing: -0.02em; }
.counter .v em { font-style: normal; color: var(--blue-bright); }
.counter .k { font-family: var(--font); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.9em; display: block; }
@media (max-width: 767px) { .counter + .counter::before { display: none; } }

/* section heading helper */
.sec-head { max-width: 720px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------------------------------------------------------------------------
   15. INNER PAGE HERO + FORMS + FAQ (about / technology / contact)
   --------------------------------------------------------------------------- */

/* Compact inner-page hero */
.page-hero { position: relative; padding: 200px 0 96px; overflow: hidden; background: var(--ink); }
.page-hero .sub-title { margin-bottom: 22px; }
.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.4rem) !important; font-weight: 700 !important;
    letter-spacing: -0.02em !important; line-height: 1.04 !important; color: var(--text);
}
.page-hero .lead-p { color: var(--muted); font-size: 1.12rem; line-height: 1.65; max-width: 60ch; margin-top: 24px; }

/* Dark form fields (Redlight form tone) */
.form-label { display: block; margin-bottom: 9px; font-family: var(--font); font-weight: 500; font-size: 0.9rem; color: var(--text); letter-spacing: 0.02em; }
.form-field {
    width: 100%; padding: 15px 17px; background: var(--form-bg); border: 1px solid var(--line);
    border-radius: 8px; color: var(--text); font-family: var(--font); font-size: 1rem;
    transition: border-color 0.18s ease, background 0.18s ease;
}
.form-field::placeholder { color: var(--muted-soft); }
.form-field:focus { outline: none; border-color: var(--blue); background: rgba(1, 117, 194, 0.06); }
.form-error { color: #ff9a9a; }
.contact-aside { background: var(--card-grad); border: 1px solid var(--line); border-radius: 14px; padding: 36px; height: 100%; }
.contact-aside a { color: var(--blue-bright); text-decoration: none; }
.contact-aside a:hover { text-decoration: underline; }
.contact-success { background: rgba(1,117,194,0.08); border: 1px solid rgba(47,159,221,0.45); color: var(--text); padding: 16px 20px; border-radius: 10px; margin-bottom: 24px; }

/* Dark FAQ accordion */
.faq-acc .accordion-item {
    background: var(--card-grad-2) !important; border: 1px solid var(--line) !important;
    border-radius: 10px !important; margin-bottom: 12px; overflow: hidden;
}
.faq-acc .accordion-button {
    background: transparent !important; color: var(--text) !important; font-family: var(--font) !important;
    font-weight: 600 !important; font-size: 1.05rem !important; box-shadow: none !important; padding: 20px 24px !important;
}
.faq-acc .accordion-button:not(.collapsed) { color: var(--blue-bright) !important; background: rgba(1,117,194,0.05) !important; }
.faq-acc .accordion-button:focus { box-shadow: none !important; border: 0 !important; }
.faq-acc .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232f9fdd' stroke-width='2'%3E%3Cpath d='M2 5l6 6 6-6'/%3E%3C/svg%3E") !important;
    background-size: 1.1rem !important;
}
.faq-acc .accordion-body { color: var(--muted) !important; line-height: 1.7 !important; padding: 0 24px 24px !important; }

/* Iris analysis slider — dark-tune (keeps slick behaviour) */
.iris-glimpse { background: var(--ink-2) !important; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.iris-card { background: var(--card-grad); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.iris-arrow { background: var(--ink-3) !important; border: 1px solid var(--line) !important; color: var(--text) !important; }
.iris-arrow:hover { border-color: var(--blue) !important; color: var(--blue-bright) !important; }

/* page-hero floating sphere helper reused */
.page-hero .inst-sphere { z-index: 1; }

/* ---------------------------------------------------------------------------
   16. PER-INDUSTRY SOLUTION THEMING (--sol set inline per page)
   Blue stays the brand (buttons, .kw); --sol is a fine secondary tint on
   accents, data labels, motifs. Aviation cyan · production amber · sport green.
   --------------------------------------------------------------------------- */
.sol-page { --sol: var(--blue-bright); --sol-rgb: 47,159,221; }

/* tighter vertical rhythm on solution pages (sections were too thick) */
.sol-page > section.section { padding-top: 78px !important; padding-bottom: 78px !important; }
.sol-page .sol-hero { min-height: 74vh !important; padding-top: 130px !important; padding-bottom: 60px !important; }

.sol-page .sub-title { color: var(--sol) !important; }
.sol-page .sub-title::before { background: var(--sol) !important; }
.sol-page .inst-coord { color: var(--sol) !important; }
.sol-page .inst-card__idx { color: var(--sol) !important; }
.sol-page .inst-card .more { color: var(--sol); }
.sol-page .inst-card .more i,
.sol-page .sol-plus { color: var(--sol); }
.sol-page .inst-card:hover { border-color: rgba(var(--sol-rgb), 0.45); }
.sol-page .inst-card__icon { color: var(--sol); border-color: rgba(var(--sol-rgb), 0.28); background: rgba(var(--sol-rgb), 0.08); }
.sol-page .why-card .round { color: var(--sol); border-color: rgba(var(--sol-rgb), 0.30); background: rgba(var(--sol-rgb), 0.10); }
.sol-page .inst-reticle::before, .sol-page .inst-reticle::after { background: var(--sol) !important; }
.sol-page .inst-reticle > span { border-color: var(--sol) !important; }
.sol-page .inst-frame::before, .sol-page .inst-frame::after,
.sol-page .inst-frame > .tick-bl, .sol-page .inst-frame > .tick-br { border-color: var(--sol) !important; }

/* full per-page tint: brand blue → industry colour on every element */
.sol-page .kw { color: var(--sol) !important; }
.sol-page .counter .v em { color: var(--sol) !important; }
.sol-page .btn.btn--primary, .sol-page a.btn.btn--primary {
    background-color: var(--sol) !important; border-color: var(--sol) !important; color: #0a1417 !important;
    box-shadow: 0 10px 30px -10px rgba(var(--sol-rgb), 0.5);
}
.sol-page .btn.btn--primary:hover, .sol-page a.btn.btn--primary:hover {
    background-color: var(--sol) !important; border-color: var(--sol) !important; filter: brightness(0.9); transform: none !important;
}
.sol-page .btn.btn--secondary:hover, .sol-page a.btn.btn--secondary:hover {
    border-color: rgba(255, 255, 255, 0.26) !important; color: var(--text) !important; background: rgba(255, 255, 255, 0.06) !important; transform: none !important;
}

/* themed floating sphere */
.sol-sphere {
    background: radial-gradient(circle at 32% 28%, #eaf7fb 0%, var(--sol) 38%, rgba(var(--sol-rgb), 0.85) 66%, #04141a 100%) !important;
    box-shadow: 0 30px 60px -18px rgba(var(--sol-rgb), 0.6), inset -8px -10px 24px rgba(0,0,0,0.4) !important;
}

/* ambient industry glow */
.sol-glow {
    position: absolute; top: 16%; right: 6%; width: 460px; height: 460px; border-radius: 50%;
    filter: blur(85px); pointer-events: none; z-index: 0;
    background: radial-gradient(circle, rgba(var(--sol-rgb), 0.18), transparent 70%);
}

/* instrument panel (hero right) */
.sol-panel {
    position: relative; border: 1px solid var(--line); border-radius: 12px;
    background: linear-gradient(160deg, #12191f 0%, #0c1014 100%); overflow: hidden; box-shadow: var(--shadow);
}
.sol-panel .tick-tl, .sol-panel .tick-tr, .sol-panel .tick-bl, .sol-panel .tick-br {
    position: absolute; width: 11px; height: 11px; border-color: var(--sol); border-style: solid; z-index: 4;
}
.sol-panel .tick-tl { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.sol-panel .tick-tr { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
.sol-panel .tick-bl { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }
.sol-panel .tick-br { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
.sol-panel__bar {
    display: flex; justify-content: space-between; align-items: center; padding: 13px 18px;
    border-bottom: 1px solid var(--line); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--muted); position: relative; z-index: 3;
}
.sol-panel__bar .mono { font-family: var(--font-mono); }
.sol-live { color: var(--sol); font-family: var(--font-mono); display: inline-flex; align-items: center; gap: 0.4em; }
.sol-panel__screen {
    position: relative; aspect-ratio: 4 / 3;
    background:
        radial-gradient(circle at 68% 42%, rgba(var(--sol-rgb), 0.07), transparent 60%),
        linear-gradient(var(--line-2) 1px, transparent 1px) 0 0 / 100% 38px,
        linear-gradient(90deg, var(--line-2) 1px, transparent 1px) 0 0 / 38px 100%;
}
.sol-panel__screen svg { width: 100%; height: 100%; display: block; }
/* faint scan sweep line */
.sol-panel__screen::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg, transparent 0%, rgba(var(--sol-rgb), 0.05) 50%, transparent 100%);
    mix-blend-mode: screen;
}

/* Trusted partner card */
.partner-card { display: flex; gap: 50px; align-items: center; flex-wrap: wrap; }
.partner-card__logo {
    flex: 0 0 auto; width: 210px; height: 210px; border-radius: 18px; padding: 30px;
    background: #ffffff; display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow); position: relative;
}
.partner-card__logo::before, .partner-card__logo::after {
    content: ""; position: absolute; width: 12px; height: 12px; border-color: var(--sol); border-style: solid;
}
.partner-card__logo::before { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.partner-card__logo::after  { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }
.partner-card__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.partner-card__body { flex: 1; min-width: 290px; }
.partner-card__name { font-size: clamp(1.9rem, 3vw, 2.5rem); margin: 14px 0 8px; }
.partner-card__role { color: var(--sol); font-family: var(--font); font-weight: 600; font-size: 1.05rem; margin-bottom: 16px; }
.partner-card__blurb { color: var(--muted); max-width: 62ch; line-height: 1.7; margin-bottom: 26px; }
.partner-card__socials { display: flex; gap: 12px; flex-wrap: wrap; }
.partner-card__socials a {
    display: inline-flex; align-items: center; gap: 0.5em; font-family: var(--font-mono);
    font-size: 0.78rem; letter-spacing: 0.03em; color: var(--muted); text-decoration: none;
    border: 1px solid var(--line); border-radius: 100px; padding: 0.62em 1.15em; transition: border-color 0.18s ease, color 0.18s ease;
}
.partner-card__socials a:hover { border-color: var(--sol); color: var(--sol); }
@media (max-width: 575px) { .partner-card__logo { width: 160px; height: 160px; } }

/* two-up compact variant (multiple partners) */
.partner-card.is-multi {
    gap: 28px; align-items: center; height: 100%;
    background: var(--card-grad-2); border: 1px solid var(--line); border-radius: 14px; padding: 30px;
}
.partner-card.is-multi .partner-card__logo { width: 124px; height: 124px; border-radius: 14px; padding: 18px; box-shadow: none; }
.partner-card.is-multi .partner-card__logo::before, .partner-card.is-multi .partner-card__logo::after { width: 9px; height: 9px; }
.partner-card.is-multi .partner-card__name { font-size: clamp(1.35rem, 2vw, 1.65rem); margin: 0 0 6px; }
.partner-card.is-multi .partner-card__role { font-size: 0.95rem; margin-bottom: 14px; }
@media (max-width: 575px) {
    .partner-card.is-multi { flex-direction: column; text-align: center; align-items: center; }
    .partner-card.is-multi .partner-card__socials { justify-content: center; }
}
