:root {
      --navy:         #0d1b2a;
      --navy-mid:     #152536;
      --slate:        #1e3a52;
      --steel:        #2c4a63;
      --card-bg:      #0a1520;
      --teal-bright:  #2ee8e8;
      --teal:         #2abfbf;
      --teal-dim:     #1a8f8f;
      --teal-deep:    #0f6060;
      --teal-ink:     #0a3d3d;
      --teal-wash:    #e6f7f7;
      --teal-mist:    #d0efef;
      --teal-soft:    rgba(42,191,191,0.12);
      --teal-faint:   rgba(42,191,191,0.07);
      --rule-teal:    rgba(42,191,191,0.2);
      --white:        #ffffff;
      --off-white:    #e8eef4;
      --muted:        #6b8299;
      --body-text:    #0d1b2a;
      --body-mid:     #1e3a52;
      --body-muted:   #2c4a5e;
      --rule-dark:    rgba(255,255,255,0.08);
      --gold:         #c9a84c;
    }

    .tp-page *, .tp-page *::before, .tp-page *::after {
      box-sizing: border-box;
    }

    .tp-page {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--body-text);
      line-height: 1.6;
    }


    /* ════════════════════════════════
       HERO
    ════════════════════════════════ */
    .tp-hero {
      position: relative;
      overflow: hidden;
      background: var(--navy);
      min-height: 480px;
      display: flex;
      flex-direction: column;
      align-items: stretch;
    }

    .tp-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(42,191,191,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42,191,191,0.03) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }

    .tp-hero::after {
      content: '';
      position: absolute;
      top: -140px;
      left: -100px;
      width: 640px;
      height: 640px;
      background: radial-gradient(circle, rgba(42,191,191,0.06) 0%, transparent 68%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      flex: 1;
      display: flex;
      align-items: stretch;
    }

    .hero-left {
      padding: 80px 60px 64px;
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 1160px;
      margin: 0 auto;
    }

    .hero-eyebrow {
      font-family: Arial, Helvetica, sans-serif;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 20px;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 22px;
      height: 1px;
      background: var(--teal);
    }

    .hero-h1 {
      font-family: Arial, Helvetica, sans-serif;
      font-size: clamp(30px, 4vw, 48px);
      font-weight: 500;
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 8px;
    }
    .hero-h1 em {
      font-family: Arial, Helvetica, sans-serif;
      font-style: italic;
      color: var(--teal);
    }

    .hero-rule {
      width: 44px;
      height: 2px;
      background: var(--teal);
      margin: 22px 0;
    }

    .hero-body {
      font-size: 16px;
      color: rgba(255,255,255,0.78);
      line-height: 1.75;
      max-width: 760px;
      margin-bottom: 12px;
    }
    .hero-body strong { color: var(--white); font-weight: 500; }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 40px;
    }

    .btn-primary {
      display: inline-block;
      padding: 13px 24px;
      background: var(--teal);
      color: var(--navy);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 3px;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: #33d4d4; transform: translateY(-1px); }

    .btn-outline {
      display: inline-block;
      padding: 13px 24px;
      background: transparent;
      color: var(--white);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 3px;
      transition: border-color 0.2s, color 0.2s, transform 0.15s;
    }
    .btn-outline:hover { border-color: var(--teal-dim); color: var(--teal); transform: translateY(-1px); }

    .hero-cred {
      display: flex;
      align-items: center;
      gap: 10px;
      padding-top: 28px;
      border-top: 1px solid var(--rule-dark);
    }
    .cred-label {
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--muted);
      white-space: nowrap;
      padding-right: 10px;
      border-right: 1px solid var(--rule-dark);
    }
    .cred-firms {
      display: flex;
      flex-wrap: wrap;
      gap: 4px 12px;
    }
    .cred-firm {
      font-size: 11px;
      font-weight: 500;
      color: rgba(255,255,255,0.46);
    }

    /* ── HERO INLINE POWERED ROW ── */
    .hero-inline-powered {
      display: flex;
      align-items: center;
      gap: 33px;
      margin-top: 12px;
      margin-bottom: 40px;
      padding: 20px 0;
    }

    .hip-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.42);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .hip-divider {
      width: 1px;
      height: 96px;
      background: rgba(255,255,255,0.14);
      flex-shrink: 0;
    }

    .hip-img {
      height: 138px;
      width: auto;
      display: block;
      border-radius: 6px;
      flex-shrink: 0;
    }

    .hip-tagline {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 16px;
      font-weight: 300;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.75);
      white-space: nowrap;
    }

    /* ════════════════════════════════
       SHARED SECTION UTILITIES
    ════════════════════════════════ */
    .tp-section {
      max-width: 1160px;
      margin: 0 auto;
      padding: 80px 36px;
    }
    .tp-section-dark {
      background: var(--navy);
      color: var(--white);
    }
    .tp-section-paper {
      background: var(--teal-wash);
    }

    .section-eyebrow {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 14px;
    }
    .tp-section-dark .section-eyebrow { color: var(--teal); }
    .tp-section-paper .section-eyebrow,
    .tp-section-teal .section-eyebrow { color: var(--teal-deep); }

    .section-h2 {
      font-family: Arial, Helvetica, sans-serif;
      font-size: clamp(30px, 3.8vw, 44px);
      font-weight: 500;
      line-height: 1.2;
      color: var(--body-text);
      margin-bottom: 16px;
    }
    .tp-section-dark .section-h2 { color: var(--white); }

    .section-intro {
      font-size: 15.5px;
      color: var(--body-mid);
      line-height: 1.75;
      max-width: 680px;
      margin-bottom: 52px;
    }
    .tp-section-dark .section-intro { color: rgba(255,255,255,0.92); }

    /* ════════════════════════════════
       THE CASE: 4-BLOCK GRID
    ════════════════════════════════ */
    .case-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
      background: var(--rule-teal);
      border: 1px solid var(--rule-teal);
      border-radius: 4px;
      overflow: hidden;
    }

    @media (max-width: 700px) {
      .case-grid { grid-template-columns: 1fr; }
    }

    .case-block {
      background: var(--teal-wash);
      padding: 36px 32px;
      position: relative;
    }

    .case-number {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 44px;
      font-weight: 400;
      color: rgba(15,96,96,0.14);
      line-height: 1;
      position: absolute;
      top: 24px;
      right: 28px;
    }

    .case-icon {
      width: 38px;
      height: 38px;
      border-radius: 3px;
      background: rgba(42,191,191,0.18);
      border: 1px solid var(--rule-teal);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }
    .case-icon svg { width: 18px; height: 18px; stroke: var(--teal-deep); fill: none; stroke-width: 1.5; }

    .case-problem {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--teal-deep);
      margin-bottom: 6px;
    }

    .case-h3 {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 20px;
      font-weight: 500;
      color: var(--body-text);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .case-

    .case-divider {
      height: 1px;
      background: var(--rule-teal);
      margin-bottom: 16px;
    }

    .case-resolution-label {
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--teal-ink);
      margin-bottom: 10px;
    }

    .case-bullets {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }
    .case-bullet {
      display: flex;
      gap: 9px;
      align-items: flex-start;
      font-size: 14.5px;
      color: var(--body-text);
      line-height: 1.55;
    }
    .case-bullet::before {
      content: '▸';
      color: var(--teal-dim);
      flex-shrink: 0;
      font-size: 10px;
      margin-top: 2px;
    }

    /* ════════════════════════════════
       SERVICE COMPONENTS
    ════════════════════════════════ */
    .components-wrap {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .component-card {
      border: 1px solid var(--rule-teal);
      border-radius: 4px;
      overflow: hidden;
    }

    .component-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 28px;
      background: var(--teal-mist);
      border-bottom: 1px solid var(--rule-teal);
      flex-wrap: wrap;
      gap: 10px;
    }

    .component-tier {
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--teal-deep);
      margin-bottom: 4px;
    }

    .component-title {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 21px;
      font-weight: 500;
      color: var(--body-text);
    }

    .component-badge {
      font-size: 11px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 2px;
      white-space: nowrap;
    }
    .badge-base {
      background: rgba(42,191,191,0.22);
      color: var(--teal-ink);
      border: 1px solid var(--rule-teal);
    }
    .badge-upgrade {
      background: rgba(13,27,42,0.08);
      color: var(--body-mid);
      border: 1px solid var(--rule-teal);
    }

    .component-

    @media (max-width: 680px) {
      .component-
    }

    .component-desc {
      font-size: 14px;
      color: var(--body-mid);
      line-height: 1.75;
    }

    .component-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }
    .component-feature {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 14px;
      color: var(--body-text);
      line-height: 1.55;
    }
    .feat-num {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      border-radius: 2px;
      background: rgba(42,191,191,0.2);
      border: 1px solid var(--rule-teal);
      font-size: 9px;
      font-weight: 700;
      color: var(--teal-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }

    /* ════════════════════════════════
       PRICING
    ════════════════════════════════ */
    .pricing-wrap-outer {
      background: var(--navy);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: rgba(255,255,255,0.07);
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 14px;
    }

    @media (max-width: 720px) {
      .pricing-grid { grid-template-columns: 1fr; }
    }

    .pricing-card {
      background: var(--navy);
      padding: 32px 28px;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .pricing-card.featured {
      background: var(--slate);
    }

    .pricing-card.featured::before {
      content: 'Most Popular';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: var(--teal);
      color: var(--navy);
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 0 0 4px 4px;
    }

    .price-tier {
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .price-name {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 22px;
      color: var(--white);
      margin-bottom: 18px;
    }

    .price-amount {
      display: flex;
      align-items: flex-start;
      gap: 4px;
      margin-bottom: 4px;
    }
    .price-dollar {
      font-size: 18px;
      font-weight: 500;
      color: var(--teal);
      margin-top: 6px;
    }
    .price-number {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 48px;
      line-height: 1;
      color: var(--white);
    }
    .price-period {
      font-size: 11px;
      color: var(--muted);
      margin-top: auto;
      padding-bottom: 4px;
      align-self: flex-end;
    }

    .price-effective {
      font-size: 11.5px;
      color: var(--teal);
      margin-bottom: 22px;
    }

    .price-rule {
      height: 1px;
      background: var(--rule-dark);
      margin-bottom: 18px;
    }

    .price-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
      flex: 1;
    }
    .price-feature {
      display: flex;
      gap: 9px;
      align-items: flex-start;
      font-size: 14.5px;
      color: var(--off-white);
      line-height: 1.5;
    }
    .price-feature::before {
      content: '▸';
      color: var(--teal);
      flex-shrink: 0;
      font-size: 9.5px;
      margin-top: 2px;
    }

    .pricing-note {
      font-size: 11.5px;
      color: var(--muted);
      line-height: 1.65;
      text-align: center;
      margin-bottom: 44px;
    }

    /* Deep Analysis upgrade table */
    .upgrade-section {
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 14px;
    }

    .upgrade-header {
      background: rgba(255,255,255,0.04);
      padding: 20px 28px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .upgrade-label {
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .upgrade-title {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 20px;
      color: var(--white);
    }

    .upgrade-sub {
      font-size: 14.5px;
      color: rgba(255,255,255,0.5);
      margin-top: 4px;
      line-height: 1.55;
    }

    .upgrade-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.06);
    }

    @media (max-width: 680px) {
      .upgrade-grid { grid-template-columns: 1fr; }
    }

    .upgrade-tier {
      background: var(--navy);
      padding: 24px 22px;
    }

    .upgrade-tier-name {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .upgrade-price {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 32px;
      color: var(--teal);
      margin-bottom: 4px;
    }

    .upgrade-days {
      font-size: 11.5px;
      color: rgba(255,255,255,0.5);
      margin-bottom: 12px;
    }

    .upgrade-desc {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      line-height: 1.6;
    }

    .upgrade-footer {
      padding: 14px 28px;
      background: rgba(255,255,255,0.02);
      font-size: 11.5px;
      color: var(--muted);
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    /* Pricing CTA row */
    .pricing-cta-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding-top: 8px;
      flex-wrap: wrap;
    }

    /* ════════════════════════════════
       CLOSING CTA BAND
    ════════════════════════════════ */
    .cta-band-outer {
      background: var(--teal);
    }

    .cta-band {
      max-width: 1160px;
      margin: 0 auto;
      padding: 52px 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .cta-band-copy { flex: 1; min-width: 260px; }

    .cta-band-h2 {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 28px;
      font-weight: 500;
      color: var(--navy);
      line-height: 1.25;
      margin-bottom: 6px;
    }

    .cta-band-sub {
      font-size: 14.5px;
      color: rgba(13,27,42,0.82);
      line-height: 1.6;
    }

    .btn-compare-dark {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 13px 20px;
      background: transparent;
      color: var(--navy);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid rgba(13,27,42,0.25);
      border-radius: 3px;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-compare-dark:hover {
      border-color: rgba(13,27,42,0.5);
      color: var(--navy);
      background: rgba(13,27,42,0.08);
    }
    .btn-compare-dark::before {
      content: '⇄';
      font-size: 14px;
      line-height: 1;
    }

    .btn-compare-light {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 11px 18px;
      background: transparent;
      color: var(--teal-deep);
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid var(--rule-teal);
      border-radius: 3px;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .btn-compare-light:hover {
      background: rgba(42,191,191,0.1);
      border-color: var(--teal-dim);
      color: var(--teal-ink);
    }
    .btn-compare-light::before {
      content: '⇄';
      font-size: 14px;
      line-height: 1;
    }

    .compare-nudge {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 18px 0 4px;
    }
    .compare-nudge-text {
      font-size: 14px;
      color: var(--body-muted);
    }
    .compare-nudge-text-dark {
      font-size: 14px;
      color: var(--muted);
    }
    .btn-dark {
      display: inline-block;
      padding: 14px 28px;
      background: var(--navy);
      color: var(--white);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 3px;
      white-space: nowrap;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-dark:hover { background: #1a2e42; transform: translateY(-1px); }

    /* ════════════════════════════════
       RESPONSIVE
    ════════════════════════════════ */
    @media (max-width: 860px) {
      .hero-left { padding: 48px 24px 40px; }
      .hero-powered { padding: 14px 24px; }
      .hero-powered-inner { flex-wrap: wrap; gap: 12px; }
      .hero-powered-tagline { font-family: Arial, Helvetica, sans-serif; white-space: normal; }
      .hero-inline-powered { gap: 18px !important; padding: 16px 0 !important; }
      .hip-img { height: 110px !important; }
      .hip-divider { height: 76px !important; }
      .hip-label { font-size: 9px; }
      .hip-tagline { font-size: 13px; }
      .tp-section { padding: 60px 24px; }
      .case-block { padding: 28px 24px; }
      .price-number { font-size: 38px; }
      .btn-primary { white-space: normal; text-align: center; }
      .btn-secondary { white-space: normal; text-align: center; }
      .btn-compare { white-space: normal; text-align: center; }
      .hero-ctas { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 600px) {
      .hero-left { padding: 40px 20px 36px; }
      .tp-section { padding: 48px 20px; }
      .component-header { flex-direction: column; align-items: flex-start; }
      .hero-inline-powered {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding: 16px 0 !important;
      }
      .hip-divider { display: none !important; }
      .hip-img { height: 80px !important; }
      .hip-label { font-size: 9px; letter-spacing: 0.12em; }
      .hip-tagline { font-size: 13px; }
      .price-number { font-size: 34px; }
      .case-number { font-size: 32px; }
      .upgrade-tier-name { font-size: 16px; }
      .btn-primary,
      .btn-secondary,
      .btn-compare,
      .btn-compare-dark,
      .btn-compare-light,
      .btn-dark,
      .card-cta { white-space: normal !important; text-align: center; width: 100%; box-sizing: border-box; }
      .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; }
      .pricing-cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
      .case-grid { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; }
      .upgrade-grid { grid-template-columns: 1fr; }
    }