/* ── IT Support Page Styles ─────────────────── */
.its-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,194,255,0.07) 0%, transparent 70%);
}
.its-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.its-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(to bottom, transparent, transparent 79px, rgba(0,194,255,0.05) 80px),
        repeating-linear-gradient(to right,  transparent, transparent 79px, rgba(0,194,255,0.05) 80px);
}

/* ── Hero motion: "Heartbeat Monitor" ─────────────────────────────
   An ECG-style waveform with a bright pulse continuously scanning
   across it, plus a few softly-blinking status pings - reads as
   24/7 proactive monitoring, distinct from the shared PCB-trace
   motif used on other pages (see css/global.css .hx-flow-svg).
   prefers-reduced-motion is handled globally in global.css. */
.its-ekg-svg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    overflow: visible;
    pointer-events: none;
}
.its-ekg-line {
    fill: none;
    stroke: rgba(0,194,255,0.18);
    stroke-width: 1.5;
}
.its-ekg-pulse {
    fill: none;
    stroke: var(--highlight);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 90 1550;
    filter: drop-shadow(0 0 6px var(--highlight));
    animation: its-ekg-scan 5s linear infinite;
}
@keyframes its-ekg-scan { to { stroke-dashoffset: -2400; } }
.its-status-dot {
    fill: var(--highlight);
    filter: drop-shadow(0 0 4px var(--highlight));
    animation: its-status-blink 3.3s ease-in-out infinite;
}
@keyframes its-status-blink {
    0%, 100% { opacity: .25; }
    50%      { opacity: 1; }
}
.its-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 120px 0 80px;
}
.its-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,194,255,0.08);
    border: 1px solid rgba(0,194,255,0.2);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--highlight);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.its-hero h1 { font-size: clamp(2rem,4vw,3.2rem); line-height: 1.2; margin-bottom: 16px; }
.its-hero h1 em { font-style: normal; color: var(--highlight); }
.its-hero-desc { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; max-width: 520px; }
.its-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Pain Points */
.its-pain {
    background: rgba(255,80,80,0.04);
    border: 1px solid rgba(255,80,80,0.12);
    border-radius: 20px;
    padding: 32px;
}
.its-pain h3 { font-size: 1rem; color: rgba(255,130,100,0.9); margin-bottom: 20px; letter-spacing: 0.05em; }
.its-pain-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.its-pain-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--text-muted); }
.its-pain-list li::before { content: '✕'; color: rgba(255,100,80,0.7); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Stats strip */
.its-stats { background: rgba(0,194,255,0.04); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 36px 0; }
.its-stats-inner { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.its-stat-item { text-align: center; }
.its-stat-item strong { display: block; font-size: 2.2rem; font-weight: 700; color: var(--highlight); }
.its-stat-item span { font-size: 0.85rem; color: var(--text-muted); }

/* Scope Section */
.its-scope-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 16px; margin-top: 40px; }
.its-scope-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 22px 20px;
    transition: border-color .25s, transform .25s;
}
.its-scope-card:hover { border-color: rgba(0,194,255,0.4); transform: translateY(-3px); }
.its-scope-card .icon { margin-bottom: 10px; color: var(--highlight); }
.its-scope-card .icon svg { display: block; width: 28px; height: 28px; }
.its-scope-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.its-scope-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* Pricing */
.its-pricing { padding: 100px 0; }
.its-plan-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.its-plan {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform .25s, border-color .25s;
}
.its-plan:hover { transform: translateY(-4px); border-color: rgba(0,194,255,0.3); }
.its-plan.featured {
    border-color: var(--highlight);
    background: rgba(0,194,255,0.05);
}
.its-plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--highlight);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}
.its-plan-name { font-size: 0.85rem; font-weight: 600; color: var(--highlight); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.its-plan-price { font-size: 2.4rem; font-weight: 700; margin-bottom: 4px; }
.its-plan-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.its-plan-for { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--glass-border); }
.its-plan-features { list-style: none; padding: 0; margin: 0 0 32px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.its-plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text-muted); }
.its-plan-features li svg { flex-shrink: 0; margin-top: 2px; color: var(--highlight); }
.its-plan-features li.na { opacity: 0.35; }
.its-plan-features li.na svg { color: var(--text-muted); }
.its-plan-cta { display: block; text-align: center; padding: 12px; border-radius: 10px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: all .2s; }
.its-plan.featured .its-plan-cta { background: var(--highlight); color: #000; }
.its-plan:not(.featured) .its-plan-cta { border: 1px solid rgba(0,194,255,0.3); color: var(--highlight); }
.its-plan:not(.featured) .its-plan-cta:hover { background: rgba(0,194,255,0.1); }

/* Process */
.its-process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 48px; position: relative; }
.its-process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--highlight), transparent);
    opacity: 0.3;
}
.its-step { text-align: center; padding: 0 16px; }
.its-step-num {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; font-weight: 700; color: var(--highlight);
    margin: 0 auto 16px;
    position: relative; z-index: 1;
}
.its-step h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.its-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* FAQ */
.its-faq { padding: 80px 0; }
.its-faq-list { max-width: 800px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.its-faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    overflow: hidden;
}
.its-faq-q {
    width: 100%; text-align: left;
    background: transparent; border: none; cursor: pointer;
    padding: 20px 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.95rem; font-weight: 600; color: var(--text);
    gap: 12px;
}
.its-faq-q svg { flex-shrink: 0; transition: transform .3s; color: var(--highlight); }
.its-faq-item.open .its-faq-q svg { transform: rotate(45deg); }
.its-faq-a { display: none; padding: 0 24px 20px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; border-top: 1px solid var(--glass-border); padding-top: 16px; }
.its-faq-item.open .its-faq-a { display: block; }

/* CTA Banner */
.its-cta-banner {
    background: linear-gradient(135deg, rgba(0,194,255,0.08), rgba(0,240,255,0.04));
    border: 1px solid rgba(0,194,255,0.2);
    border-radius: 24px;
    padding: 60px 48px;
    text-align: center;
    margin: 0 0 100px;
}
.its-cta-banner h2 { font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 12px; }
.its-cta-banner p { color: var(--text-muted); max-width: 540px; margin: 0 auto 32px; }
.its-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Comparison table */
.its-compare { overflow-x: auto; margin-top: 40px; }
.its-compare table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.its-compare th, .its-compare td { padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--glass-border); }
.its-compare th:first-child, .its-compare td:first-child { text-align: left; }
.its-compare thead th { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.its-compare thead th.hdr-featured { color: var(--highlight); }
.its-compare .check { color: var(--highlight); font-size: 1.1rem; }
.its-compare .no { color: rgba(255,255,255,0.2); }
.its-compare tbody tr:hover td { background: rgba(0,194,255,0.03); }

@media (max-width: 1100px) {
    .its-plan-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
    .its-hero-inner { grid-template-columns: 1fr; padding: 100px 0 60px; }
    .its-pain { display: none; }
    .its-plan-grid { grid-template-columns: 1fr; }
    .its-process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
    .its-process-steps::before { display: none; }
    .its-scope-grid { grid-template-columns: 1fr 1fr; }
    .its-cta-banner { padding: 40px 24px; }
}
