:root {
    --navy: #06354a;
    --navy-2: #0a4a5c;
    --navy-deep: #032830;
    --green: #009860;
    --green-light: #00b56f;
    --blue: #0070b8;
    --blue-deep: #005a96;
    --accent-red: #e31c23;
    --red: #009860;
    --red-dark: #007a4c;
    --grad: linear-gradient(135deg, #00b56f 0%, #009860 42%, #e31c23 56%, #0070b8 100%);
    --grad-dark: linear-gradient(160deg, #032830 0%, #06354a 38%, #4a1218 58%, #0a5c48 100%);
    --white: #ffffff;
    --grey: #f3f8f6;
    --muted: #5b6b80;
    --line: #d7e8e1;
    --shadow: 0 18px 50px rgba(0, 88, 70, .12);
    --shadow-lg: 0 24px 56px rgba(0, 88, 70, .16);
    --ease: cubic-bezier(.22, .61, .36, 1);
    --radius: 16px;
    --font: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.it-body {
    margin: 0;
    font-family: var(--font);
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

.it-wrap { width: min(1240px, calc(100% - 64px)); margin: 0 auto; }
.it-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin: 0 0 16px;
    line-height: 1;
}
.it-kicker:before {
    content: "";
    width: 32px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    flex: none;
}
.it-h1 { font-size: clamp(32px, 4.4vw, 52px); line-height: 1.18; letter-spacing: -.03em; margin: 0 0 18px; }
.it-h2 {
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.2;
    letter-spacing: -.03em;
    margin: 0 0 18px;
    max-width: 16em;
    color: var(--navy);
}
.it-center { text-align: center; }
.it-center .it-h2, .it-center .it-lead, .it-center .it-kicker { margin-left: auto; margin-right: auto; }
.it-center .it-kicker { justify-content: center; }
.it-center .it-h2 { max-width: 18em; }
.it-btn-lg { padding: 16px 28px; font-size: 15px; border-radius: 12px; }
.it-lead { color: var(--muted); font-size: 16px; line-height: 1.8; max-width: 640px; margin: 0 0 0; }
.it-head { margin: 0 0 40px; }
.it-grid-2 > .it-head { margin-bottom: 0; }
.it-head .it-lead { margin-top: -4px; }
.it-head + .it-cards,
.it-head + .it-stats,
.it-head + .it-process,
.it-head + .it-tech-groups,
.it-head + .it-cases,
.it-head + .it-reviews,
.it-head + .it-sec { margin-top: 0; }
.it-why {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) 1.1fr;
    gap: 56px;
    align-items: start;
}
.it-why-intro { position: sticky; top: 100px; }
.it-why-intro .it-h2 { max-width: 12em; }
.it-why-list {
    background: #fff;
    border: 1px solid rgba(11,31,58,.06);
    border-radius: 22px;
    padding: 10px;
    box-shadow:
        0 4px 12px rgba(11,31,58,.04),
        0 22px 48px rgba(11,31,58,.10);
}
.it-why-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 18px 16px;
    margin: 4px 0;
    border-radius: 16px;
    align-items: start;
    background: transparent;
    transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease, background .35s ease;
}
.it-why-item span {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--red);
    background: #e8f8f1;
    box-shadow: 0 8px 18px rgba(0,152,96,.16);
    padding: 0;
    transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease, background .35s ease, color .35s ease;
}
.it-why-item h3 { margin: 0 0 6px; font-size: 18px; transition: color .3s ease; }
.it-why-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.it-why-item:hover {
    transform: translateY(-6px);
    background: #fff;
    box-shadow:
        0 8px 18px rgba(11,31,58,.08),
        0 22px 40px rgba(11,31,58,.12);
}
.it-why-item:hover span {
    transform: scale(1.08);
    color: #fff;
    background: var(--grad);
    box-shadow: 0 10px 22px rgba(0,152,96,.32);
}
.it-why-item:hover h3 { color: var(--red); }
.it-cta { margin: 32px 0 0; }
.it-cta.center { text-align: center; }

/* Header */
.it-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #fff;
    box-shadow: 0 10px 30px rgba(11,31,58,.08);
    overflow: visible;
}
.it-topbar {
    background: var(--grad-dark);
    color: #b7dccf;
    font-size: 12px;
    font-weight: 600;
}
.it-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
    gap: 16px;
}
.it-topbar-links { display: flex; gap: 18px; flex-wrap: wrap; }
.it-topbar a { color: #dbe7f5; }
.it-topbar a:hover { color: #fff; }
.it-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    padding: 8px 0;
    gap: 16px;
    overflow: visible;
}
.it-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--navy); flex: none; }
.it-logo img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; }
.it-menu { display: flex; align-items: center; justify-content: center; flex: 1; gap: 2px; }
.it-item { position: relative; }
.it-item > a, .it-item > button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 22px 12px;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
    border-radius: 0;
    white-space: nowrap;
    position: relative;
}
.it-item > a:hover, .it-item > button:hover,
.it-item.is-open > button, .it-item.open > button {
    color: var(--red);
}
.it-caret {
    width: 7px; height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s ease;
    display: inline-block;
}
.it-item.is-open .it-caret, .it-item.open .it-caret {
    transform: rotate(225deg) translateY(-1px);
}
.it-mega-layer {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 300;
    padding-top: 0;
}
.it-header.is-mega .it-mega-layer { display: block; }
.it-mega-panel {
    display: none;
    background: #fff;
    border: 1px solid #e6edf5;
    border-top: 0;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 28px 70px rgba(11,31,58,.18);
    padding: 36px 40px 40px;
    min-height: 300px;
}
.it-mega-panel.is-on { display: block; }
.it-mega-grid {
    display: grid;
    gap: 20px 36px;
    align-items: start;
}
.it-mega-grid.cols-3 { grid-template-columns: 1.1fr 1.1fr 1fr; }
.it-mega-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.it-mega-grid h5 {
    margin: 0 0 16px;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
}
.it-mega-grid a {
    display: block;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 650;
    color: var(--navy);
}
.it-mega-grid a:hover { color: var(--red); }
.it-mega-aside {
    background: var(--grey);
    border-radius: 16px;
    padding: 22px 20px;
    min-height: 220px;
}
.it-mega-aside p { margin: 10px 0 4px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.it-mega-aside p:first-of-type { margin-top: 0; }
.it-mega-cta {
    display: inline-flex !important;
    margin-top: 16px;
    background: var(--grad);
    color: #fff !important;
    font-weight: 700;
    padding: 12px 16px !important;
    border-radius: 10px;
}
.it-mega-cta:hover { filter: brightness(1.08); color: #fff !important; }
.it-mega-links { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.it-mega-links a {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px 16px !important;
    font-weight: 800;
    text-align: center;
    background: #fff;
}
.it-mega-links a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.it-mega-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}
.it-mega-steps span {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    background: var(--grey);
    border-radius: 12px;
    padding: 14px 16px;
    line-height: 1.45;
}
.it-cta-row { display: flex; align-items: center; gap: 8px; flex: none; }
.it-nav-cta { padding: 11px 16px; font-size: 13px; white-space: nowrap; }
.it-btn {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--grad); color: #fff !important; font-weight: 700; font-size: 14px;
    padding: 12px 20px; border-radius: 10px; border: 0; cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 152, 96, .32);
    transition: transform .2s, filter .2s;
}
.it-btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.it-btn.ghost {
    background: transparent; color: var(--navy) !important; box-shadow: none;
    border: 1px solid var(--line);
}
.it-btn.navy {
    background: linear-gradient(135deg, #06354a 0%, #e31c23 48%, #0070b8 100%);
    box-shadow: 0 10px 24px rgba(0, 112, 184, .28);
}
.it-burger {
    display: none;
    background: none;
    border: 1px solid var(--line);
    border-radius: 10px;
    width: 42px; height: 42px;
    place-items: center;
    gap: 5px;
    padding: 0;
    flex-direction: column;
}
.it-burger span {
    display: block;
    width: 18px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
}

/* Hero */
.it-hero {
    background:
        radial-gradient(700px circle at 88% 18%, rgba(0,152,96,.32), transparent 52%),
        radial-gradient(380px circle at 70% 8%, rgba(227,28,35,.18), transparent 48%),
        radial-gradient(560px circle at 12% 80%, rgba(0,112,184,.28), transparent 50%),
        linear-gradient(180deg, #032830 0%, #06354a 40%, #3d1218 62%, #0a5c48 100%);
    color: #fff;
    padding: 12px 0 0;
    overflow: hidden;
    position: relative;
}
.it-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    animation: orb 10s ease-in-out infinite;
}
.it-orb-a { width: 280px; height: 280px; background: rgba(0,152,96,.32); top: -60px; right: 12%; }
.it-orb-b { width: 220px; height: 220px; background: rgba(0,112,184,.28); bottom: -40px; left: 8%; animation-delay: -4s; }
@keyframes orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(18px, -16px) scale(1.08); }
}
.it-hero .it-lead { color: #c5d0de; }
.it-hero-copy { animation: riseIn .75s ease both; }
.it-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: 16px 0 28px; position: relative; z-index: 1; }
.it-hero-main {
    position: relative;
    z-index: 1;
    text-align: left;
    padding: 0;
    max-width: none;
}
.it-hero-kicker {
    color: #7ddeb8;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    margin: 0 0 18px;
}
.it-rotator { position: relative; margin-left: 0; margin-right: 0; max-width: 14.5em; }
.it-rotator-line {
    display: none;
    color: #fff;
}
.it-rotator-line.is-on { display: block; animation: riseIn .55s ease; }
.it-rotator em { font-style: normal; color: #7ddeb8; }
.it-hero-sub { margin: 8px 0 0; max-width: 640px; }
.it-hero-cta { justify-content: flex-start; }
.it-hero-partner { color: #9fb0c6; font-size: 14px; margin: 28px 0 12px; }
.it-hero-ratings {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 18px;
    color: #f5b301;
    font-size: 13px;
    font-weight: 700;
}
.it-hero-ratings span { color: #dbe7f5; }
.it-hero-stats {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,.04);
    border-top: 1px solid rgba(255,255,255,.1);
}
.it-hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 28px 0;
}
.it-hero-stats-grid strong {
    display: block;
    font-size: clamp(28px, 3vw, 40px);
    color: #fff;
    letter-spacing: -.03em;
}
.it-hero-stats-grid span { color: #9fb0c6; font-size: 13px; font-weight: 600; }
.it-chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); padding: 7px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .04em; margin-bottom: 18px; }
.it-live {
    width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34,197,94,.7);
    animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
    100% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
}
.it-hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.it-hero-pills span {
    font-size: 12px; font-weight: 700; color: #dbe7f5;
    border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 7px 12px;
    background: rgba(255,255,255,.05);
}
.it-btn.hero-ghost { color: #fff !important; border-color: rgba(255,255,255,.25); background: transparent; box-shadow: none; }
.it-hero-visual {
    position: relative;
    min-height: 420px;
    padding: 28px 24px 32px;
    border-radius: 24px;
    background:
        radial-gradient(420px circle at 50% 18%, rgba(0,152,96,.28), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(3,40,48,.4));
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 28px 60px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    animation: riseIn .85s .12s ease both;
}
.it-arch-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.it-arch-lines path {
    stroke: rgba(255,255,255,.22);
    stroke-width: 1.5;
    stroke-dasharray: 6 8;
    animation: dash 18s linear infinite;
}
@keyframes dash { to { stroke-dashoffset: -220; } }
.it-arch-node {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    max-width: 280px;
    background: rgba(11, 31, 58, .82);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
    animation: floaty 5.5s ease-in-out infinite;
}
.it-arch-row .it-arch-node:first-child { animation-delay: .4s; }
.it-arch-row .it-arch-node:last-child { animation-delay: .8s; }
.it-arch-bottom { animation-delay: 1.1s; }
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes riseIn {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: none; }
}
.it-arch-node i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex: none;
    background: linear-gradient(135deg, #00b56f, #e31c23, #0070b8);
    box-shadow: 0 0 0 4px rgba(0,152,96,.18);
}
.it-arch-node i.dot { background: linear-gradient(135deg, #3d7dff, #7dd3fc); box-shadow: 0 0 0 4px rgba(61,125,255,.16); }
.it-arch-node i.pulse {
    background: linear-gradient(135deg, #22c55e, #86efac);
    box-shadow: 0 0 0 4px rgba(34,197,94,.16);
}
.it-arch-node b { display: block; font-size: 14px; font-weight: 800; letter-spacing: -.01em; }
.it-arch-node span { display: block; margin-top: 3px; font-size: 12px; color: #9fb0c6; }
.it-arch-top {
    border-color: rgba(0,152,96,.45);
    background: linear-gradient(180deg, rgba(0,152,96,.18), rgba(11,31,58,.88));
}
.it-arch-row {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 0 8px;
}
.it-arch-bottom { min-width: 240px; }
.it-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.it-strip {
    background: var(--grad-dark);
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
}
.it-marquee { overflow: hidden; }
.it-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
}
.it-marquee-track a {
    padding: 16px 36px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,.1);
}
.it-marquee-track a:hover { color: #7ddeb8; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.it-section { padding: 64px 0; }
.it-section.grey { background: var(--grey); }
.it-section.navy {
    background: var(--grad-dark);
    color: #fff;
}
.it-section.navy .it-lead, .it-section.navy p { color: #c5d0de; }
.it-section.navy .it-kicker { color: #7ddeb8; }
.it-section.navy .it-h2 { color: #fff; }
.it-lead + .it-lead { margin-top: 16px; }

.it-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.it-stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: 0 12px 32px rgba(11,31,58,.08); }
.it-stat strong { display: block; font-size: 32px; color: var(--red); }
.it-stat span { color: var(--muted); font-size: 13px; font-weight: 600; }

.it-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.it-photo-wrap { border-radius: 20px; overflow: hidden; background: #eef2f6; box-shadow: var(--shadow-lg); }
.it-photo { width: 100%; display: block; transition: transform .7s var(--ease); }
.it-photo-wrap:hover .it-photo { transform: scale(1.04); }
.it-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; align-items: stretch; }
.it-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.it-cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.it-card {
    position: relative;
    overflow: hidden;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
    box-shadow: 0 12px 32px rgba(11,31,58,.07);
    transition: transform .32s var(--ease), box-shadow .32s ease, border-color .32s ease;
    display: flex; flex-direction: column; height: 100%; min-height: 0;
}
.it-card:before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green) 0%, #e31c23 50%, var(--blue) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}
.it-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: #8fd4b8; }
.it-card:hover:before { transform: scaleX(1); }
.it-stat {
    transition: transform .32s var(--ease), box-shadow .32s ease, border-color .32s ease;
}
.it-stat:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: #8fd4b8;
}
.it-icon {
    width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
    background: #e8f8f1; color: var(--red); font-weight: 800; margin-bottom: 16px;
}
.it-card h3 { margin: 0 0 10px; font-size: 18px; line-height: 1.3; }
.it-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.it-card.dark { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); color: #fff; }
.it-card.dark p { color: #c5d0de; }
.it-sec {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}
.it-sec-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.it-sec-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 16px;
    padding: 22px 18px 20px;
    min-height: 168px;
    color: #fff;
    box-shadow: 0 14px 34px rgba(0,0,0,.28);
    transition: transform .32s cubic-bezier(.22,.61,.36,1), box-shadow .32s ease, border-color .32s ease, background .32s ease;
}
.it-sec-card:before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #009860, #e31c23, #0070b8);
    opacity: .85;
}
.it-sec-card h3 { margin: 8px 0 10px; font-size: 16px; }
.it-sec-card p { margin: 0; color: #c5d0de; font-size: 13px; line-height: 1.65; }
.it-sec-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,152,96,.45);
    background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
    box-shadow: 0 22px 44px rgba(0,0,0,.42), 0 0 0 1px rgba(0,152,96,.2);
}
.it-cases {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.it-case {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 0 0 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: 0 14px 36px rgba(11,31,58,.08);
    transition: transform .32s var(--ease), box-shadow .32s ease;
}
.it-case:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.it-case:before {
    content: "";
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--green) 0%, #e31c23 50%, var(--blue) 100%);
}
.it-case-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px 0;
}
.it-case-no { font-size: 13px; font-weight: 800; letter-spacing: .12em; color: var(--red); }
.it-case-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--grey);
    border-radius: 999px;
    padding: 6px 10px;
}
.it-case h3 { margin: 14px 22px 10px; font-size: 22px; line-height: 1.25; }
.it-case-copy, .it-case-sol { margin: 0 22px 10px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.it-case-sol { color: var(--navy-2); }
.it-case-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 6px 22px 14px; }
.it-case-chips span {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 10px;
}
.it-case-result {
    margin: auto 22px 0;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.55;
}

.it-reviews {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.it-review {
    margin: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 24px 22px;
    box-shadow: 0 14px 36px rgba(11,31,58,.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .32s var(--ease), box-shadow .32s ease;
}
.it-review:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.it-review:before {
    content: "“";
    position: absolute;
    top: 8px;
    right: 22px;
    font-size: 64px;
    line-height: 1;
    color: #9ad9c0;
    font-family: Georgia, serif;
}
.it-review-stars { color: #f5b301; letter-spacing: 2px; font-size: 14px; margin-bottom: 14px; }
.it-review > p { margin: 0 0 22px; color: var(--navy-2); font-size: 15px; line-height: 1.75; font-weight: 500; }
.it-review footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.it-review img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex: none;
}
.it-review strong { display: block; font-size: 14px; color: var(--navy); }
.it-review span { font-size: 12px; color: var(--muted); }

.it-tech-groups { display: none; }
.it-tech-grid { display: none; }
.it-tech-board {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px 22px 28px;
    box-shadow: 0 16px 40px rgba(11,31,58,.08);
}
.it-tech-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    min-height: 132px;
    align-items: stretch;
}
.it-tech-item {
    width: 148px;
    min-height: 124px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(11,31,58,.06);
    transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease;
}
.it-tech-item img { width: 40px; height: 40px; object-fit: contain; }
.it-tech-item span { font-size: 13px; font-weight: 700; color: var(--navy); }
.it-tech-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: #8fd4b8;
}

.it-process {
    list-style: none;
    margin: 48px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
    position: relative;
}
.it-process:before {
    content: "";
    position: absolute;
    top: 27px;
    left: 6%;
    right: 6%;
    height: 2px;
    background: linear-gradient(90deg, #009860 0%, #e31c23 50%, #0070b8 100%);
    opacity: .35;
}
.it-process-item {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 6px;
}
.it-process-node {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    border: 2px solid var(--red);
    box-shadow: 0 0 0 6px #fff, 0 12px 28px rgba(0,152,96,.22);
    transition: transform .32s var(--ease), background .32s ease, box-shadow .32s ease;
}
.it-process-node span { font-size: 14px; font-weight: 800; color: var(--red); }
.it-process-item:hover .it-process-node {
    background: var(--grad);
    transform: scale(1.1);
    box-shadow: 0 0 0 6px #fff, 0 16px 32px rgba(0,152,96,.35);
}
.it-process-item:hover .it-process-node span { color: #fff; }
.it-process-item strong { display: block; font-size: 15px; margin-bottom: 6px; color: var(--navy); }
.it-process-item p { margin: 0; font-size: 13px; line-height: 1.55; color: var(--muted); }

.it-tech { display: none; }

.it-form { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px; box-shadow: var(--shadow-lg); color: var(--navy); }
.it-section.navy .it-form h3 { color: var(--navy); }
.it-section.navy .it-form label { color: var(--navy); }
.it-panel-list {
    margin: 0;
    padding: 10px;
    list-style: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}
.it-panel-list li {
    position: relative;
    padding: 16px 16px 16px 40px;
    border-radius: 12px;
    color: var(--navy);
    font-weight: 700;
    transition: transform .32s var(--ease), box-shadow .32s ease, background .32s ease;
}
.it-panel-list li:before {
    content: "";
    position: absolute;
    left: 16px;
    top: 22px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
}
.it-panel-list li:hover {
    background: #fff;
    transform: translateX(6px);
    box-shadow: 0 12px 28px rgba(11,31,58,.1);
}
.it-form label { display: block; font-size: 12px; font-weight: 700; margin: 0 0 6px; }
.it-form input, .it-form select, .it-form textarea {
    width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; margin-bottom: 14px; background: #fff;
}
.it-form textarea { min-height: 110px; resize: vertical; }
.it-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }

.it-page-hero {
    background: var(--grad-dark);
    color: #fff; padding: 72px 0 56px;
}
.it-page-hero .it-lead { color: #c5d0de; }
.it-crumbs { font-size: 13px; color: #9fb0c6; margin-bottom: 10px; }
.it-crumbs a { color: #fff; }
.it-list { margin: 18px 0 0; padding: 0; list-style: none; }
.it-list li { position: relative; padding: 9px 0 9px 22px; color: var(--muted); }
.it-list li:before { content: ""; position: absolute; left: 0; top: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }

.it-footer { background: var(--grad-dark); color: #b8c4d4; padding: 56px 0 20px; }
.it-footer h4 {
    color: #fff;
    margin: 0 0 14px;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.it-foot-top {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
    gap: 32px 28px;
    align-items: start;
}
.it-foot-brand .it-logo { margin-bottom: 14px; color: #fff; }
.it-foot-company { margin: 0; color: #fff; font-weight: 700; font-size: 15px; line-height: 1.5; }
.it-foot-tag { margin: 8px 0 0; font-size: 13px; line-height: 1.6; max-width: 240px; }
.it-footer .it-foot-top a {
    display: block;
    padding: 5px 0;
    font-size: 14px;
    color: #b8c4d4;
}
.it-footer .it-foot-top a:hover { color: #fff; }
.it-foot-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.it-foot-contact a {
    display: block;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 16px 18px;
}
.it-foot-contact a:hover { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.07); }
.it-foot-contact span { display: block; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: #8ea0b5; margin-bottom: 6px; }
.it-foot-contact strong { display: block; color: #fff; font-size: 16px; font-weight: 700; }
.it-foot-address {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}
.it-foot-address > div {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    padding: 16px 18px;
}
.it-foot-address span { display: block; color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.it-foot-address p { margin: 0; font-size: 13.5px; line-height: 1.7; }
.it-copy {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 28px;
    padding: 18px 0 4px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    flex-wrap: wrap;
}

.it-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.it-reveal.in { opacity: 1; transform: none; }
.it-anim { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.it-anim.in { opacity: 1; transform: none; }
.it-marquee:hover .it-marquee-track { animation-play-state: paused; }

.it-audience {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 8px;
}
.it-audience-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 32px 28px 26px;
    box-shadow: 0 16px 40px rgba(11,31,58,.08);
    transition: transform .32s var(--ease), box-shadow .32s ease;
}
.it-audience-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.it-audience-card.featured {
    background: var(--grad-dark);
    color: #fff;
    border-color: transparent;
    transform: translateY(-12px);
    box-shadow: 0 28px 56px rgba(11,31,58,.28);
}
.it-audience-card h3 { margin: 0 0 18px; font-size: 24px; }
.it-audience-card ul { margin: 0 0 22px; padding: 0; list-style: none; }
.it-audience-card li {
    position: relative;
    padding: 8px 0 8px 18px;
    color: var(--muted);
    font-weight: 600;
    font-size: 15px;
}
.it-audience-card li:before {
    content: "";
    position: absolute;
    left: 0; top: 16px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--red);
}
.it-audience-card.featured li { color: #c5d0de; }
.it-audience-card a {
    display: inline-flex;
    font-weight: 800;
    font-size: 14px;
    color: var(--red);
}
.it-audience-card.featured a { color: #7ddeb8; }
.it-audience-card a:after { content: " →"; }

.it-banner {
    background:
        radial-gradient(500px circle at 90% 20%, rgba(0,152,96,.35), transparent 50%),
        linear-gradient(90deg, #032830, #4a1218 48%, #0070b8);
    color: #fff;
    padding: 56px 0;
}
.it-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.it-banner h2 { margin: 0 0 10px; font-size: clamp(26px, 3vw, 36px); letter-spacing: -.03em; }
.it-banner p { margin: 0; color: #c5d0de; max-width: 560px; line-height: 1.7; }

.it-svc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.it-svc-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 24px 22px;
    box-shadow: 0 16px 40px rgba(11,31,58,.08);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    transition: transform .32s var(--ease), box-shadow .32s ease;
}
.it-svc-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.it-svc-no {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: grid; place-items: center;
    background: #e8f8f1;
    color: var(--red);
    font-weight: 800;
    margin-bottom: 18px;
    box-shadow: 0 10px 20px rgba(0,152,96,.12);
}
.it-svc-card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.3; }
.it-svc-card p { margin: 0 0 18px; color: var(--muted); font-size: 14.5px; line-height: 1.7; }
.it-more { margin-top: auto; font-weight: 800; font-size: 13px; color: var(--red); letter-spacing: .04em; text-transform: uppercase; }
.it-svc-card:hover .it-svc-no { background: var(--grad); color: #fff; }

.it-tab-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0 0 24px;
}
.it-tab {
    border: 1px solid var(--line);
    background: #f4f6f9;
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: .2s ease;
}
.it-tab:hover { border-color: var(--red); color: var(--red); background: #fff; }
.it-tab.is-on {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
}
.it-tab.is-on:hover { color: #fff; }
.it-tab-panel { display: none; }
.it-tab-panel.is-on { display: block; }

.it-ind {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.it-ind-card {
    background: linear-gradient(180deg, #fff, #f8fafc);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 26px 22px 20px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 14px 36px rgba(11,31,58,.08);
    transition: transform .32s var(--ease), box-shadow .32s ease, background .32s ease;
}
.it-ind-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--grad-dark);
    color: #fff;
}
.it-ind-card h3 { margin: 0 0 6px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.it-ind-card:hover h3 { color: #7ddeb8; }
.it-ind-card strong { display: block; font-size: 20px; line-height: 1.3; margin-bottom: 10px; }
.it-ind-card p { margin: 0 0 16px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.it-ind-card:hover p { color: #c5d0de; }
.it-ind-card .it-more { margin-top: auto; }

.it-why3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.it-why3 article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 32px 26px;
    box-shadow: 0 16px 40px rgba(11,31,58,.08);
    transition: transform .32s var(--ease), box-shadow .32s ease;
}
.it-why3 article:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.it-why3 h3 { margin: 0 0 12px; font-size: 22px; }
.it-why3 p { margin: 0 0 18px; color: var(--muted); line-height: 1.7; }
.it-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.it-tags span {
    background: #e8f8f1;
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
}
.it-rating-line {
    display: inline-block;
    margin-top: 16px !important;
    background: #fff8e8;
    color: var(--navy) !important;
    font-weight: 800;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 999px;
}
.it-contact-band { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.it-trust-quote {
    margin: 22px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--red);
    background: rgba(255,255,255,.06);
    color: #fff !important;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
    border-radius: 0 12px 12px 0;
}

@media (prefers-reduced-motion: reduce) {
    .it-orb, .it-arch-node, .it-arch-lines path, .it-live, .it-marquee-track, .it-hero-copy, .it-hero-visual {
        animation: none !important;
    }
    .it-reveal, .it-anim { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1200px) {
    .it-topbar { display: none; }
    .it-menu, .it-cta-row .desktop-only { display: none; }
    .it-burger { display: flex; flex-direction: column; align-items: center; justify-content: center; }
    .it-menu.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 100%;
        left: 50%;
        width: 100vw;
        margin-left: -50vw;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 8px 16px 20px;
        max-height: calc(100vh - 78px);
        overflow: auto;
        box-shadow: 0 24px 40px rgba(11,31,58,.12);
    }
    .it-item > a, .it-item > button { width: 100%; justify-content: space-between; padding: 12px; }
    .it-mega-layer {
        position: static;
        display: none;
        left: auto;
        right: auto;
        top: auto;
        padding: 0 0 8px;
    }
    .it-header.is-mega .it-menu.open .it-mega-layer { display: block; }
    .it-mega-panel {
        display: none;
        min-height: 0;
        padding: 16px;
        border-radius: 12px;
        box-shadow: none;
        border: 0;
        background: var(--grey);
    }
    .it-mega-panel.is-on { display: block; }
    .it-mega-grid.cols-4, .it-mega-grid.cols-3, .it-mega-links { grid-template-columns: 1fr !important; }
    .it-mega-aside { background: #fff; min-height: 0; }
    .it-mega-steps { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
    .it-audience, .it-svc, .it-why3, .it-ind { grid-template-columns: 1fr 1fr; }
    .it-audience-card.featured { transform: none; }
    .it-banner-inner, .it-contact-band { grid-template-columns: 1fr; display: grid; }
    .it-hero-stats-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
    .it-cards, .it-cards.cols-3 { grid-template-columns: repeat(2, 1fr); }
    .it-sec, .it-sec-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .it-why { grid-template-columns: 1fr; gap: 28px; }
    .it-why-intro { position: static; }
    .it-cases, .it-reviews { grid-template-columns: 1fr 1fr; }
    .it-tech-row { min-height: 0; }
    .it-tech-item { width: calc(50% - 8px); }
    .it-process { grid-template-columns: 1fr; gap: 0; padding-left: 8px; }
    .it-process:before { top: 12px; bottom: 12px; left: 26px; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, #009860, #e31c23, #0070b8); }
    .it-process-item { display: grid; grid-template-columns: 54px 1fr; grid-template-rows: auto auto; column-gap: 16px; text-align: left; padding: 12px 0; }
    .it-process-node { margin: 0; grid-row: 1 / span 2; }
    .it-foot-top { grid-template-columns: 1fr 1fr; }
    .it-foot-contact, .it-foot-address { grid-template-columns: 1fr; }
    .it-hero-grid, .it-grid-2, .it-form-grid { grid-template-columns: 1fr; }
    .it-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .it-audience, .it-svc, .it-why3, .it-ind, .it-hero-stats-grid { grid-template-columns: 1fr; }
    .it-cards, .it-cards.cols-3, .it-stats, .it-cases, .it-reviews, .it-sec { grid-template-columns: 1fr; }
    .it-tech-item { width: calc(50% - 8px); }
    .it-hero { padding: 10px 0 0; }
    .it-hero-grid { padding: 10px 0 24px; }
    .it-hero-visual { min-height: auto; padding: 20px; gap: 14px; }
    .it-arch-lines { display: none; }
    .it-arch-row { flex-direction: column; align-items: center; }
    .it-arch-node, .it-arch-bottom { width: 100%; max-width: none; min-width: 0; }
}
