:root {
    --navy: #020728;
    --red: #9C0D0D;
    --green: #82CD47;
    --text: #333;
    --muted: #5b6474;
    --border: #e6ebf4;
    --white: #fff;
    --shadow: 0 10px 28px rgba(2, 7, 40, .07);
    --font: 'Roboto', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    line-height: 1.6;
    background: #f8f9fc;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.2; margin: 0 0 .75rem; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding-left: 1.2rem; }
.center { text-align: center; }

.itsq-container {
    width: min(1200px, calc(100% - 32px));
    margin-inline: auto;
}

/* Header */
.itsq-header {
    background: rgba(2, 7, 40, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,.15);
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.itsq-header.is-scrolled {
    background: rgba(2, 7, 40, .98);
    box-shadow: 0 8px 28px rgba(0,0,0,.22);
}
.itsq-header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}
.itsq-logo-wrap {
    background: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
    flex-shrink: 0;
    transition: transform .25s ease, box-shadow .25s ease;
}
.itsq-logo-wrap:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.itsq-logo-wrap img { width: 150px; max-width: 150px; height: auto; display: block; }
.itsq-nav { flex: 1; min-width: 0; }
.itsq-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 2px 4px;
    align-items: center;
    justify-content: center;
}
.itsq-menu-item { position: relative; }
.itsq-menu-row { display: contents; }
.itsq-menu-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.92);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 8px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: .3px;
    white-space: nowrap;
    transition: color .25s ease, background .25s ease, transform .25s ease;
}
.itsq-menu-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green), #a8e063);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
}
.itsq-menu-link:hover,
.itsq-menu-item.is-active > .itsq-menu-row > .itsq-menu-link,
.itsq-menu-item.has-dropdown:hover > .itsq-menu-row > .itsq-menu-link,
.itsq-menu-item.has-dropdown.is-open > .itsq-menu-row > .itsq-menu-link {
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,.06);
}
.itsq-menu-link:hover::after,
.itsq-menu-item.is-active > .itsq-menu-row > .itsq-menu-link::after,
.itsq-menu-item.has-dropdown:hover > .itsq-menu-row > .itsq-menu-link::after,
.itsq-menu-item.has-dropdown.is-open > .itsq-menu-row > .itsq-menu-link::after {
    transform: scaleX(1);
}
.itsq-menu-caret {
    font-size: 10px;
    opacity: .8;
    transition: transform .28s cubic-bezier(.4, 0, .2, 1), opacity .25s ease;
}
.itsq-menu-item.has-dropdown:hover .itsq-menu-caret,
.itsq-menu-item.has-dropdown.is-open .itsq-menu-caret {
    transform: rotate(180deg);
    opacity: 1;
}
.itsq-phase-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(130,205,71,.18);
    color: var(--green);
    text-transform: none;
    letter-spacing: 0;
}
.itsq-submenu-toggle { display: none; }

.itsq-dropdown-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(14px);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, transform .28s cubic-bezier(.4, 0, .2, 1), visibility .28s ease;
    z-index: 120;
}
.itsq-dropdown-inner {
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 14px;
    box-shadow: 0 22px 50px rgba(2,7,40,.18), 0 0 0 1px rgba(2,7,40,.04);
    padding: 10px;
    overflow: hidden;
}
.itsq-menu-item.has-dropdown:hover > .itsq-dropdown-panel,
.itsq-menu-item.has-dropdown.is-open > .itsq-dropdown-panel,
.itsq-menu-item.has-dropdown:focus-within > .itsq-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.itsq-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.itsq-dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--navy);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background .22s ease, color .22s ease, transform .22s ease;
}
.itsq-dropdown-link:hover,
.itsq-dropdown-link.is-active {
    background: linear-gradient(90deg, rgba(130,205,71,.14), rgba(130,205,71,.04));
    color: var(--red);
    text-decoration: none;
    transform: translateX(4px);
}
.itsq-dropdown-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(2,7,40,.06);
    color: var(--navy);
    flex-shrink: 0;
    transition: background .22s ease, color .22s ease, transform .22s ease;
}
.itsq-dropdown-link:hover .itsq-dropdown-icon,
.itsq-dropdown-link.is-active .itsq-dropdown-icon {
    background: var(--green);
    color: #fff;
    transform: scale(1.05);
}
.itsq-dropdown-text { flex: 1; line-height: 1.35; }
.itsq-dropdown-arrow {
    font-size: 11px;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .22s ease, transform .22s ease;
}
.itsq-dropdown-link:hover .itsq-dropdown-arrow,
.itsq-dropdown-link.is-active .itsq-dropdown-arrow {
    opacity: 1;
    transform: translateX(0);
}

.itsq-menu-item.has-mega > .itsq-dropdown-panel {
    left: 50%;
    transform: translateX(-50%) translateY(14px);
    min-width: min(760px, calc(100vw - 40px));
}
.itsq-menu-item.has-mega:hover > .itsq-dropdown-panel,
.itsq-menu-item.has-mega.is-open > .itsq-dropdown-panel,
.itsq-menu-item.has-mega:focus-within > .itsq-dropdown-panel {
    transform: translateX(-50%) translateY(0);
}
.itsq-mega-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 10px 14px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
}
.itsq-mega-kicker {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--green);
}
.itsq-mega-head strong {
    color: var(--navy);
    font-size: 15px;
}
.itsq-mega-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(156,13,13,.08);
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background .22s ease, transform .22s ease;
}
.itsq-mega-all:hover {
    background: rgba(156,13,13,.14);
    transform: translateX(2px);
    text-decoration: none;
}
.itsq-mega-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
}
.itsq-mega-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
    transition: background .22s ease, color .22s ease, transform .22s ease;
}
.itsq-mega-link i {
    margin-top: 2px;
    color: var(--green);
    transition: transform .22s ease;
}
.itsq-mega-link:hover,
.itsq-mega-link.is-active {
    background: rgba(130,205,71,.12);
    color: var(--red);
    text-decoration: none;
    transform: translateY(-1px);
}
.itsq-mega-link:hover i,
.itsq-mega-link.is-active i { transform: scale(1.08); }

.itsq-dropdown-list > li,
.itsq-mega-grid > li {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .24s ease, transform .24s ease;
}
.itsq-menu-item.has-dropdown:hover .itsq-dropdown-list > li,
.itsq-menu-item.has-dropdown.is-open .itsq-dropdown-list > li,
.itsq-menu-item.has-dropdown:hover .itsq-mega-grid > li,
.itsq-menu-item.has-dropdown.is-open .itsq-mega-grid > li {
    opacity: 1;
    transform: translateY(0);
}
.itsq-dropdown-list > li:nth-child(1), .itsq-mega-grid > li:nth-child(1) { transition-delay: .03s; }
.itsq-dropdown-list > li:nth-child(2), .itsq-mega-grid > li:nth-child(2) { transition-delay: .06s; }
.itsq-dropdown-list > li:nth-child(3), .itsq-mega-grid > li:nth-child(3) { transition-delay: .09s; }
.itsq-dropdown-list > li:nth-child(4), .itsq-mega-grid > li:nth-child(4) { transition-delay: .12s; }
.itsq-dropdown-list > li:nth-child(5), .itsq-mega-grid > li:nth-child(5) { transition-delay: .15s; }
.itsq-dropdown-list > li:nth-child(6), .itsq-mega-grid > li:nth-child(6) { transition-delay: .18s; }
.itsq-mega-grid > li:nth-child(7) { transition-delay: .21s; }
.itsq-mega-grid > li:nth-child(8) { transition-delay: .24s; }
.itsq-mega-grid > li:nth-child(9) { transition-delay: .27s; }
.itsq-mega-grid > li:nth-child(10) { transition-delay: .30s; }
.itsq-mega-grid > li:nth-child(11) { transition-delay: .33s; }
.itsq-mega-grid > li:nth-child(12) { transition-delay: .36s; }

.itsq-header-cta {
    color: #fff;
    background: linear-gradient(135deg, var(--red), #c01818);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(156,13,13,.28);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.itsq-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(156,13,13,.34);
    text-decoration: none;
    color: #fff;
}
.itsq-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    transition: background .25s ease, border-color .25s ease;
}
.itsq-nav-toggle:hover { background: rgba(255,255,255,.12); }
.itsq-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .28s ease, opacity .28s ease;
}
.itsq-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.itsq-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.itsq-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.itsq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: .2s;
}
.itsq-btn:hover { text-decoration: none; transform: translateY(-1px); }
.itsq-btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.itsq-btn-primary:hover { background: #7a0a0a; color: #fff; }
.itsq-btn-outline { background: transparent; color: var(--red); border-color: var(--red); }
.itsq-btn-outline:hover { background: var(--red); color: #fff; }
.itsq-btn-outline-light { background: transparent; color: #fff; border-color: #fff; }
.itsq-btn-outline-light:hover { background: #fff; color: var(--navy); }
.itsq-btn-sm { padding: 8px 16px; font-size: 13px; }

.itsq-kicker {
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    margin-bottom: 8px;
}
.itsq-kicker.light { color: var(--green); }
.itsq-lead { font-size: 18px; color: var(--muted); max-width: 640px; }

/* Hero */
.itsq-hero {
    background: linear-gradient(135deg, #f0f4ff 0%, #fff 50%);
    padding: 60px 0 80px;
}
.itsq-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.itsq-hero-badge span {
    display: inline-block;
    background: var(--green);
    color: var(--navy);
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(130,205,71,.28);
}
.itsq-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
.itsq-hero h1 span { color: var(--red); }
.itsq-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.itsq-stats { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 32px; }
.itsq-stat strong { display: block; font-size: 28px; color: var(--navy); }
.itsq-stat span { font-size: 13px; color: var(--muted); }
.itsq-hero-card {
    background: var(--navy);
    color: #fff;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
}
.itsq-hero-card i { font-size: 48px; color: var(--green); margin-bottom: 16px; }
.itsq-hero-card h3 { color: #fff; }

/* Welcome */
.itsq-welcome { padding: 80px 0; background: #fff; }
.itsq-welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.itsq-video-wrap iframe {
    width: 100%;
    min-height: 280px;
    border: 0;
    border-radius: 12px;
    aspect-ratio: 16/9;
}

/* Service cards */
.itsq-services, .itsq-section { padding: 80px 0; }
.itsq-section-alt { background: #fff; }
.itsq-svc-grid { margin-top: 40px; }
.itsq-svc-track {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.itsq-svc-grid.static .itsq-svc-track { display: grid; grid-template-columns: repeat(3, 1fr); }
.itsq-svc-card {
    position: relative;
    min-height: 250px;
    flex: 0 0 calc(33.333% - 14px);
    width: calc(33.333% - 14px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color .3s;
}
.itsq-svc-link { display: block; text-decoration: none; color: inherit; }
.itsq-svc-front {
    position: absolute;
    inset: 0;
    background: var(--navy);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    transition: all 1s ease;
    z-index: 2;
}
.itsq-svc-front i { font-size: 40px; }
.itsq-svc-front h3 { color: #fff; margin: 0; text-align: center; }
.itsq-svc-back {
    min-height: 250px;
    background: #fff;
    padding: 24px 24px 24px 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.itsq-svc-back h3 { margin-bottom: 12px; }
.itsq-svc-back .itsq-btn { opacity: 0; max-height: 0; overflow: hidden; transition: .4s; margin-top: 0; }
.itsq-svc-card:hover .itsq-svc-front {
    left: -75px; top: 50px; width: 150px; height: 150px;
    border-radius: 10px; background: var(--red);
    inset: auto auto auto 0;
}
.itsq-svc-card:hover .itsq-svc-front h3 { font-size: 0; opacity: 0; }
.itsq-svc-card:hover .itsq-svc-back .itsq-btn { opacity: 1; max-height: 80px; margin-top: 12px; }

/* Tech wheel */
.itsq-tech {
    background: var(--navy);
    color: #fff;
    padding: 80px 0;
}
.itsq-tech h2, .itsq-tech p { color: #fff; }
.itsq-tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.itsq-tech-icons { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.itsq-tech-icons img { width: 40px; height: 40px; object-fit: contain; filter: brightness(0) invert(1); }
.itsq-wheel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}
.itsq-wheel-img {
    width: 410px;
    max-width: 100%;
    animation: itsq-wheel-spin 16s linear infinite;
    transform-origin: 50% 50%;
}
.itsq-wheel-center {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 148px; height: 148px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .4px;
    line-height: 1.25;
    text-transform: uppercase;
    pointer-events: none;
    border: 4px solid rgba(255,255,255,.1);
}
@keyframes itsq-wheel-spin { to { transform: rotate(360deg); } }

/* Steps */
.itsq-steps { padding: 80px 0; background: #fff; }
.itsq-steps-head { margin-bottom: 32px; }
.itsq-steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.itsq-steps-col {
    flex: 0 0 calc(50% - 12px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.itsq-step-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 22px 20px 26px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .28s, box-shadow .28s, border-color .28s;
}
.itsq-step-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--navy);
    transition: .28s;
}
.itsq-step-card:hover {
    transform: translateY(-6px);
    border-color: var(--red);
    box-shadow: 0 18px 40px rgba(156,13,13,.16);
}
.itsq-step-card:hover::before { background: var(--red); width: 5px; }
.itsq-step-icon {
    flex: 0 0 56px;
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    border-radius: 14px;
    color: #fff;
    font-size: 22px;
    transition: .28s;
}
.itsq-step-card:hover .itsq-step-icon { background: var(--red); transform: scale(1.06); }
.itsq-step-body h3 { font-size: 18px; margin-bottom: 6px; }
.itsq-step-body p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.55; }
.itsq-steps-article {
    margin-top: 32px;
    padding: 28px;
    background: #f3f5f9;
    border-radius: 12px;
    border-left: 4px solid var(--red);
}
.itsq-steps-article h3 { margin-bottom: 12px; }
.itsq-steps-article li { color: #4a4a4a; margin-bottom: 6px; }

/* FAQ */
.itsq-faq-section { padding: 80px 0; background: #f8f9fc; }
.itsq-faq-cols {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}
.itsq-faq { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.itsq-faq-item {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}
.itsq-faq-item summary {
    list-style: none;
    cursor: pointer;
    background: var(--navy);
    color: #fff;
    padding: 14px 44px 14px 16px;
    font-size: 16px;
    position: relative;
}
.itsq-faq-item summary::-webkit-details-marker { display: none; }
.itsq-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 16px; top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 700;
}
.itsq-faq-item[open] summary::after { content: "–"; }
.itsq-faq-body { padding: 12px 16px 16px; font-size: 15px; }
.itsq-faq-body p { margin: 0; }

/* Clients marquee */
.itsq-clients { padding: 60px 0 80px; background: #fff; }
.itsq-clients-marquee { overflow: hidden; margin-top: 32px; }
.itsq-clients-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: itsq-marquee 30s linear infinite;
    align-items: center;
}
.itsq-clients-track img { height: 60px; width: auto; object-fit: contain; opacity: .85; }
@keyframes itsq-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Page hero */
.itsq-page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #0a1654 100%);
    color: #fff;
    padding: 60px 0;
}
.itsq-page-hero h1, .itsq-page-hero .itsq-kicker { color: #fff; }
.itsq-page-hero .itsq-kicker { color: var(--green); }
.itsq-page-hero .itsq-lead { color: rgba(255,255,255,.85); }

.itsq-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}
.itsq-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    box-shadow: var(--shadow);
}
.itsq-pill i { color: var(--red); }

.itsq-service-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.itsq-service-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
}
.itsq-service-item h3 { color: var(--red); font-size: 18px; }

.itsq-phase-box { text-align: center; }
.itsq-phase-box .itsq-lead { margin-inline: auto; }

/* Footer */
.itsq-footer-main {
    background: var(--navy);
    color: rgba(255,255,255,.85);
    padding: 48px 0 32px;
}
.itsq-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
}
.itsq-footer h4 { color: #fff; margin-bottom: 16px; }
.itsq-footer ul { list-style: none; padding: 0; }
.itsq-footer li { margin-bottom: 8px; }
.itsq-footer a { color: rgba(255,255,255,.85); }
.itsq-footer a:hover { color: var(--green); }
.itsq-footer-bar {
    background: var(--red);
    color: #fff;
    padding: 8px 0;
}
.itsq-footer-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.itsq-footer-bar p { margin: 0; font-size: 14px; }
.itsq-foot-social { display: flex; gap: 12px; }
.itsq-foot-social a {
    color: #fff;
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    text-decoration: none;
}
.itsq-foot-social a:hover { background: rgba(255,255,255,.3); }

/* Mobile carousel */
.itsq-mcarousel-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.itsq-mcarousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: 0;
    background: #ccc;
    padding: 0;
    cursor: pointer;
}
.itsq-mcarousel-dot.is-active { background: var(--red); width: 24px; border-radius: 4px; }

@media (max-width: 1024px) {
    .itsq-nav-toggle { display: flex; }
    .itsq-nav {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(2,7,40,.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 16px 20px 24px;
        border-top: 1px solid rgba(255,255,255,.1);
        max-height: calc(100vh - 76px);
        overflow-y: auto;
    }
    .itsq-nav.is-open { display: block; }
    .itsq-menu { flex-direction: column; align-items: stretch; gap: 4px; }
    .itsq-menu-item { width: 100%; }
    .itsq-menu-row {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
    }
    .itsq-menu-link {
        flex: 1;
        justify-content: space-between;
        padding: 12px 14px;
        border-radius: 10px;
        background: rgba(255,255,255,.04);
    }
    .itsq-menu-link::after { display: none; }
    .itsq-submenu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 10px;
        background: rgba(255,255,255,.06);
        color: #fff;
        cursor: pointer;
        flex-shrink: 0;
        transition: background .22s ease, transform .22s ease;
    }
    .itsq-submenu-toggle i { transition: transform .25s ease; }
    .itsq-menu-item.has-dropdown.is-open .itsq-submenu-toggle i { transform: rotate(180deg); }
    .itsq-dropdown-panel {
        position: static;
        transform: none;
        min-width: 0;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height .32s ease, visibility .32s ease, margin .32s ease;
    }
    .itsq-menu-item.has-dropdown.is-open > .itsq-dropdown-panel {
        visibility: visible;
        pointer-events: auto;
        max-height: 520px;
        margin-top: 6px;
    }
    .itsq-dropdown-inner {
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.08);
        box-shadow: none;
        padding: 8px;
    }
    .itsq-dropdown-link,
    .itsq-mega-link {
        color: #fff;
        transform: none;
    }
    .itsq-dropdown-link:hover,
    .itsq-dropdown-link.is-active,
    .itsq-mega-link:hover,
    .itsq-mega-link.is-active {
        background: rgba(255,255,255,.08);
        color: var(--green);
        transform: none;
    }
    .itsq-dropdown-icon {
        background: rgba(255,255,255,.1);
        color: #fff;
    }
    .itsq-dropdown-link:hover .itsq-dropdown-icon,
    .itsq-dropdown-link.is-active .itsq-dropdown-icon {
        background: var(--green);
        color: #fff;
    }
    .itsq-mega-head {
        border-bottom-color: rgba(255,255,255,.12);
        flex-direction: column;
        align-items: flex-start;
    }
    .itsq-mega-head strong,
    .itsq-mega-kicker { color: #fff; }
    .itsq-mega-all {
        background: rgba(255,255,255,.08);
        color: #fff;
    }
    .itsq-mega-grid { grid-template-columns: 1fr; }
    .itsq-header-cta { display: none; }
    .itsq-logo-wrap img { width: 140px; }
    body.itsq-menu-open { overflow: hidden; }

    .itsq-hero-grid, .itsq-welcome-grid, .itsq-tech-grid { grid-template-columns: 1fr; }
    .itsq-hero { padding: 40px 0 60px; }
    .itsq-hero-actions { flex-direction: column; }
    .itsq-hero-actions .itsq-btn { width: 100%; }

    .itsq-mcarousel-host { overflow: hidden; }
    .itsq-mcarousel-track {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 8px;
        scrollbar-width: none;
    }
    .itsq-mcarousel-track::-webkit-scrollbar { display: none; }
    .itsq-svc-card {
        flex: 0 0 min(335px, 88vw) !important;
        width: min(335px, 88vw) !important;
        scroll-snap-align: center;
    }
    .itsq-svc-grid.static .itsq-svc-track { display: flex; overflow-x: auto; }
    .itsq-mcarousel-dots { display: flex; }

    .itsq-steps-col { flex: 0 0 100%; }
    .itsq-faq-cols { flex-direction: column; }
    .itsq-footer-grid { grid-template-columns: 1fr; }
    .itsq-service-items { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .itsq-svc-grid.static .itsq-svc-track { grid-template-columns: 1fr; }
    .itsq-step-card { padding: 16px 16px 16px 20px; }
    .itsq-step-icon { width: 48px; height: 48px; flex-basis: 48px; font-size: 18px; }
    .itsq-step-card:hover { transform: translateY(-3px); }
}

/* Live hero + footer */
.itsq-hero-live {
    background: #020728;
    color: #fff;
    padding: 80px 0 70px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.itsq-hero-live h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; line-height: 1.3; }
.itsq-lead.light { color: rgba(255,255,255,.85); }
.itsq-stats-inline { margin-top: 32px; gap: 32px; }
.itsq-stats-inline .itsq-stat strong { color: #fff; font-size: 24px; }
.itsq-stats-inline .itsq-stat span { color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: .5px; }
.itsq-footer-4col { grid-template-columns: repeat(4, 1fr); }
.itsq-footer-line { margin: 0 0 4px; font-size: 14px; color: rgba(255,255,255,.85); }
.itsq-map-thumb { border-radius: 8px; margin-top: 8px; max-width: 100%; }
.itsq-content-grid, .itsq-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.itsq-why-grid { display: grid; gap: 16px; }
.itsq-contact-form label { display: block; margin-bottom: 12px; font-weight: 500; }
.itsq-contact-form input, .itsq-contact-form textarea { width: 100%; padding: 10px; border: 1px solid #e6ebf4; border-radius: 8px; margin-top: 4px; }
.itsq-blog-post { background: #fff; padding: 24px; border-radius: 12px; margin-bottom: 16px; box-shadow: var(--shadow); }
.itsq-blog-post time { color: var(--muted); font-size: 13px; }
.itsq-portfolio-card { text-decoration: none; color: inherit; display: block; transition: .2s; }
.itsq-portfolio-card:hover { border-color: var(--red); transform: translateY(-2px); }
.itsq-portfolio-card span { color: var(--red); font-size: 14px; }

/* LMS */
.itsq-course-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.itsq-course-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 24px; box-shadow: var(--shadow); }
.itsq-course-meta { color: var(--muted); font-size: 14px; }
.itsq-lesson-list { list-style: none; padding: 0; }
.itsq-lesson-list li { padding: 12px 0; border-bottom: 1px solid var(--border); }
.itsq-lesson-list a { color: var(--navy); text-decoration: none; font-weight: 500; }
.itsq-lesson-list a:hover { color: var(--red); }
.itsq-flash.success { color: #0a7; }
.itsq-flash.error { color: var(--red); }
.itsq-badge { background: var(--green); color: var(--navy); padding: 6px 12px; border-radius: 6px; font-weight: 700; font-size: 13px; }
.itsq-auth-card { max-width: 420px; margin: 60px auto; background: #fff; padding: 32px; border-radius: 12px; box-shadow: var(--shadow); }
.itsq-auth-card label { display: block; margin-bottom: 12px; }
.itsq-auth-card input { width: 100%; padding: 10px; border: 1px solid var(--border); border-radius: 8px; margin-top: 4px; }
.itsq-admin-bar { background: #020728; color: #fff; padding: 12px 20px; display: flex; justify-content: space-between; }
.itsq-admin-bar a { color: #fff; }
.itsq-admin-wrap { max-width: 960px; margin: 24px auto; padding: 0 20px; }
.itsq-admin-table { width: 100%; border-collapse: collapse; margin-top: 16px; background: #fff; }
.itsq-admin-table th, .itsq-admin-table td { padding: 10px 12px; border: 1px solid var(--border); text-align: left; font-size: 14px; }
.itsq-admin-form label { display: block; margin-bottom: 12px; }
.itsq-admin-form input, .itsq-admin-form textarea { width: 100%; max-width: 560px; padding: 8px; border: 1px solid var(--border); border-radius: 6px; margin-top: 4px; }

@media (max-width: 1024px) {
    .itsq-footer-4col { grid-template-columns: 1fr 1fr; }
    .itsq-content-grid, .itsq-contact-grid { grid-template-columns: 1fr; }
}
