 /* =============================================
     TH-SHIELD MONITORING PAGE - SCOPED STYLES
  ============================================= */
 
  .thshield-monitoring-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
 
  .thshield-monitoring-page {
    --primary: #f05c62;
    --primary-dark: #d94a50;
    --primary-light: rgba(240,92,98,0.10);
    --secondary: #2f3440;
    --secondary-light: #3d4455;
    --white: #ffffff;
    --light-bg: #f8f8f8;
    --gray: #888;
    --text-dark: #1a1a1a;
    --text-body: #555;
    --border: #e5e5e5;
    font-family: 'Barlow', sans-serif;
    color: var(--text-body);
    overflow-x: hidden;
  }
 
  /* ── SCROLL ANIMATIONS ── */
  .thshield-monitoring-page .ths-reveal {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
  }
  .thshield-monitoring-page .ths-reveal.ths-in {
    opacity: 1;
    transform: translateY(0);
  }
  .thshield-monitoring-page .ths-reveal-left {
    opacity: 0;
    transform: translateX(-52px);
    transition: opacity 0.75s cubic-bezier(.22,1,.36,1), transform 0.75s cubic-bezier(.22,1,.36,1);
  }
  .thshield-monitoring-page .ths-reveal-left.ths-in {
    opacity: 1;
    transform: translateX(0);
  }
  .thshield-monitoring-page .ths-reveal-right {
    opacity: 0;
    transform: translateX(52px);
    transition: opacity 0.75s cubic-bezier(.22,1,.36,1), transform 0.75s cubic-bezier(.22,1,.36,1);
  }
  .thshield-monitoring-page .ths-reveal-right.ths-in {
    opacity: 1;
    transform: translateX(0);
  }
  .thshield-monitoring-page .ths-d1 { transition-delay: 0.08s; }
  .thshield-monitoring-page .ths-d2 { transition-delay: 0.18s; }
  .thshield-monitoring-page .ths-d3 { transition-delay: 0.30s; }
  .thshield-monitoring-page .ths-d4 { transition-delay: 0.42s; }
  .thshield-monitoring-page .ths-d5 { transition-delay: 0.54s; }
 
  /* ── SHARED LAYOUT ── */
  .thshield-monitoring-page .ths-section { padding: 90px 0; }
  .thshield-monitoring-page .ths-section-alt { background: var(--light-bg); }
  .thshield-monitoring-page .ths-section-dark { background: var(--secondary); }
  .thshield-monitoring-page .ths-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .thshield-monitoring-page .ths-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
  }
  .thshield-monitoring-page .ths-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary);
  }
  .thshield-monitoring-page .ths-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.05;
    margin-bottom: 14px;
  }
  .thshield-monitoring-page .ths-h2 span { color: var(--primary); }
  .thshield-monitoring-page .ths-h2-light { color: var(--white); }
  .thshield-monitoring-page .ths-bar {
    width: 52px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 28px;
  }
  .thshield-monitoring-page .ths-body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-body);
    max-width: 620px;
  }
 
  /* ══════════════════════════════
     SECTION 0: HERO
  ══════════════════════════════ */
  .thshield-monitoring-page .ths-hero {
    position: relative;
    height: 560px;
    background: url('/img/th-shield/2151850227.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .thshield-monitoring-page .ths-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47,52,64,0.88) 0%, rgba(76, 75, 75, 0.6) 100%);
  }
  .thshield-monitoring-page .ths-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 760px;
  }
  .thshield-monitoring-page .ths-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(240,92,98,0.18);
    border: 1px solid rgba(240,92,98,0.55);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 22px;
    border-radius: 2px;
    margin-bottom: 26px;
  }
  .thshield-monitoring-page .ths-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(40px, 6vw, 74px);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
  }
  .thshield-monitoring-page .ths-hero h1 span { color: var(--primary); }
  .thshield-monitoring-page .ths-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto 30px;
    font-weight: 300;
    line-height: 1.65;
  }
  .thshield-monitoring-page .ths-hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .thshield-monitoring-page .ths-btn-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 13px 30px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  .thshield-monitoring-page .ths-btn-red:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240,92,98,0.38);
  }
  .thshield-monitoring-page .ths-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.45);
    padding: 13px 30px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .thshield-monitoring-page .ths-btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
  }
  .thshield-monitoring-page .ths-hero-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  }
 
  /* ══════════════════════════════
     SECTION 1: TH-SHIELD INTRO (white)
  ══════════════════════════════ */
  .thshield-monitoring-page .ths-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .thshield-monitoring-page .ths-intro-img {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
  }
  .thshield-monitoring-page .ths-intro-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(.22,1,.36,1);
  }
  .thshield-monitoring-page .ths-intro-img:hover img { transform: scale(1.04); }
  .thshield-monitoring-page .ths-intro-img-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(47,52,64,0.92) 0%, transparent 100%);
    padding: 28px 24px 20px;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .thshield-monitoring-page .ths-intro-img-tag i { color: var(--primary); }
  .thshield-monitoring-page .ths-feature-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .thshield-monitoring-page .ths-feat-card {
    border: 1.5px solid var(--border);
    border-left: 4px solid var(--primary);
    padding: 20px 18px;
    border-radius: 0 2px 2px 0;
    background: #fafafa;
    transition: transform 0.22s, box-shadow 0.22s, background 0.22s;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .thshield-monitoring-page .ths-feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.09);
    background: var(--white);
  }
  .thshield-monitoring-page .ths-feat-card i {
    font-size: 22px;
    color: var(--primary);
  }
  .thshield-monitoring-page .ths-feat-card strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.25;
  }
 
  /* ══════════════════════════════
     SECTION 2: PRICING BANNER (primary gradient)
  ══════════════════════════════ */
  .thshield-monitoring-page .ths-pricing-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 55%, #c53b41 100%);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
  }
  .thshield-monitoring-page .ths-pricing-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .thshield-monitoring-page .ths-banner-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  .thshield-monitoring-page .ths-banner-text h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.5px;
  }
  .thshield-monitoring-page .ths-banner-text h2 em {
    font-style: normal;
    background: rgba(255,255,255,0.2);
    padding: 2px 10px;
    border-radius: 2px;
  }
  .thshield-monitoring-page .ths-banner-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.88);
    margin-top: 10px;
    font-weight: 300;
  }
  .thshield-monitoring-page .ths-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 16px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 40px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
  }
  .thshield-monitoring-page .ths-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
 
  /* ══════════════════════════════
     SECTION 3: SERVICES LIST (alt bg)
  ══════════════════════════════ */
  .thshield-monitoring-page .ths-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .thshield-monitoring-page .ths-services-img {
    border-radius: 2px;
    overflow: hidden;
    position: relative;
  }
  .thshield-monitoring-page .ths-services-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(.22,1,.36,1);
  }
  .thshield-monitoring-page .ths-services-img:hover img { transform: scale(1.04); }
  .thshield-monitoring-page .ths-service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
  }
  .thshield-monitoring-page .ths-service-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--text-body);
    font-weight: 400;
    transition: color 0.2s, padding-left 0.2s;
    cursor: default;
  }
  .thshield-monitoring-page .ths-service-list li:first-child { border-top: 1px solid var(--border); }
  .thshield-monitoring-page .ths-service-list li:hover {
    color: var(--primary);
    padding-left: 6px;
  }
  .thshield-monitoring-page .ths-service-list li i {
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
  }
 
  /* ══════════════════════════════
     SECTION 4: PRICING TABLE (white)
  ══════════════════════════════ */
  .thshield-monitoring-page .ths-pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 48px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  }
  .thshield-monitoring-page .ths-pricing-table thead tr {
    background: var(--primary);
  }
  .thshield-monitoring-page .ths-pricing-table thead th {
    padding: 18px 24px;
    text-align: left;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
  }
  .thshield-monitoring-page .ths-pricing-table tbody tr {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
  }
  .thshield-monitoring-page .ths-pricing-table tbody tr:nth-child(even) {
    background: var(--light-bg);
  }
  .thshield-monitoring-page .ths-pricing-table tbody tr:hover {
    background: rgba(240,92,98,0.04);
  }
  .thshield-monitoring-page .ths-pricing-table tbody td {
    padding: 20px 24px;
    font-size: 15px;
    color: var(--text-body);
    vertical-align: top;
    line-height: 1.6;
  }
  .thshield-monitoring-page .ths-pricing-table tbody td:first-child {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
  .thshield-monitoring-page .ths-pricing-table tbody td.ths-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
  }
  .thshield-monitoring-page .ths-pricing-table tbody td.ths-price small {
    display: block;
    font-size: 12px;
    color: var(--gray);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Barlow', sans-serif;
  }
  .thshield-monitoring-page .ths-best-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 2px;
    margin-left: 8px;
    vertical-align: middle;
  }
 
  /* ══════════════════════════════
     SECTION 5: PROBLEM-SOLUTION ACCORDION (alt bg)
  ══════════════════════════════ */
  .thshield-monitoring-page .ths-ps-header {
    text-align: center;
    margin-bottom: 52px;
  }
  .thshield-monitoring-page .ths-ps-header .ths-h2 { margin-bottom: 0; }
  .thshield-monitoring-page .ths-ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
  }
  .thshield-monitoring-page .ths-ps-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .thshield-monitoring-page .ths-ps-col-title i { color: var(--primary); font-size: 16px; }
  .thshield-monitoring-page .ths-acc-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.22s;
  }
  .thshield-monitoring-page .ths-acc-item:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.07); }
  .thshield-monitoring-page .ths-acc-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-align: left;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
    transition: color 0.2s;
  }
  .thshield-monitoring-page .ths-acc-btn:hover { color: var(--primary); }
  .thshield-monitoring-page .ths-acc-icon {
    width: 36px;
    height: 36px;
    background: rgba(240,92,98,0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .thshield-monitoring-page .ths-acc-icon i { font-size: 14px; color: var(--primary); }
  .thshield-monitoring-page .ths-acc-btn span { flex: 1; }
  .thshield-monitoring-page .ths-acc-toggle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
    font-size: 12px;
    color: var(--gray);
  }
  .thshield-monitoring-page .ths-acc-btn.ths-open .ths-acc-toggle {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
  }
  .thshield-monitoring-page .ths-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(.22,1,.36,1), padding 0.25s;
    padding: 0 20px 0 70px;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
  }
  .thshield-monitoring-page .ths-acc-body.ths-open {
    max-height: 200px;
    padding: 0 20px 18px 70px;
  }
 
  /* ══════════════════════════════
     SECTION 6: STATS (primary solid)
  ══════════════════════════════ */
  .thshield-monitoring-page .ths-stats-bar {
    background: var(--primary);
    padding: 52px 0;
  }
  .thshield-monitoring-page .ths-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .thshield-monitoring-page .ths-stat {
    text-align: center;
    padding: 16px 20px;
    position: relative;
  }
  .thshield-monitoring-page .ths-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 15%; height: 70%;
    width: 1px;
    background: rgba(255,255,255,0.28);
  }
  .thshield-monitoring-page .ths-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 54px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    display: block;
  }
  .thshield-monitoring-page .ths-stat-lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.82);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 8px;
    display: block;
  }
 
  /* ══════════════════════════════
     SECTION 7: CTA BANNER (dark overlay)
  ══════════════════════════════ */
  .thshield-monitoring-page .ths-cta {
    position: relative;
    background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&q=80') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
  }
  .thshield-monitoring-page .ths-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(47,52,64,0.88);
  }
  .thshield-monitoring-page .ths-cta-inner {
    position: relative;
    z-index: 2;
  }
  .thshield-monitoring-page .ths-cta-inner h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .thshield-monitoring-page .ths-cta-inner h2 span { color: var(--primary); }
  .thshield-monitoring-page .ths-cta-inner p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.65;
    font-weight: 300;
  }
  .thshield-monitoring-page .ths-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
 
  /* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
  @media (max-width: 900px) {
    .thshield-monitoring-page .ths-intro-grid,
    .thshield-monitoring-page .ths-services-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .thshield-monitoring-page .ths-ps-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .thshield-monitoring-page .ths-stats-row {
      grid-template-columns: repeat(2, 1fr);
    }
    .thshield-monitoring-page .ths-stat:nth-child(2)::after { display: none; }
    .thshield-monitoring-page .ths-container { padding: 0 20px; }
    .thshield-monitoring-page .ths-hero { height: 540px; }
    .thshield-monitoring-page .ths-section { padding: 60px 0; }
    .thshield-monitoring-page .ths-banner-inner { flex-direction: column; text-align: center; }
    .thshield-monitoring-page .ths-pricing-table { font-size: 13px; }
    .thshield-monitoring-page .ths-pricing-table thead th,
    .thshield-monitoring-page .ths-pricing-table tbody td { padding: 14px 14px; }
  }
  @media (max-width: 540px) {
    .thshield-monitoring-page .ths-feature-cards { grid-template-columns: 1fr; }
    .thshield-monitoring-page .ths-stats-row { grid-template-columns: 1fr 1fr; }
    .thshield-monitoring-page .ths-pricing-table thead th:nth-child(3),
    .thshield-monitoring-page .ths-pricing-table tbody td:nth-child(3) { display: none; }
  }