﻿/* ====== Page-specific styles (extends brand) ====== */
      .att-pain-card {
        background: #fff;
        border: 1px solid rgba(235, 80, 23, 0.12);
        border-radius: 18px;
        padding: 28px 24px;
        height: 100%;
        transition:
          transform 0.25s ease,
          box-shadow 0.25s ease,
          border-color 0.25s ease;
        position: relative;
        overflow: hidden;
      }

      .att-pain-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 36px rgba(235, 80, 23, 0.1);
        border-color: rgba(235, 80, 23, 0.35);
      }

      .att-pain-card .pain-num {
        font-size: 56px;
        line-height: 1;
        font-weight: 800;
        color: rgba(235, 80, 23, 0.1);
        position: absolute;
        top: 10px;
        right: 18px;
        letter-spacing: -2px;
      }

      .att-pain-card .pain-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: #fdeee7;
        color: #eb5017;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        margin-bottom: 16px;
      }

      .att-pain-card .pain-stat {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(235, 80, 23, 0.08);
        color: #eb5017;
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 600;
        margin-top: 14px;
      }

      .att-pain-card p {
        color: var(--text-2);
        font-size: 0.9rem;
        margin: 0;
        line-height: 1.55;
      }

      .att-pain-card h6 {
        font-weight: 600;
        margin: 6px 0 8px;
        line-height: 1.3;
      }

      /* Flagship system cards */
      .att-flagship {
        background: #fff;
        border: 1px solid #f1e2d8;
        border-radius: 24px;
        padding: 36px;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
      }

      .att-flagship:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 50px rgba(235, 80, 23, 0.12);
      }

      .att-flagship .flag-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fdeee7;
        color: #eb5017;
        padding: 6px 14px;
        border-radius: 999px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 18px;
      }

      .att-flagship .flag-illu {
        background: linear-gradient(160deg, #fdeee7 0%, #fff5ef 100%);
        border-radius: 18px;
        padding: 32px 24px;
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 260px;
        position: relative;
        overflow: hidden;
      }

      .att-flagship.dark {
        background: #1a1a1a;
        color: #fff;
        border-color: #2a2a2a;
      }

      .att-flagship.dark .flag-illu {
        background: linear-gradient(160deg, #2a1610 0%, #1a1a1a 100%);
      }

      .att-flagship.dark .flag-eyebrow {
        background: rgba(235, 80, 23, 0.18);
        color: #ffb89a;
      }

      .att-flagship.dark .feat-tick {
        color: #f1fcc8;
      }

      .att-flagship.dark .feat-tick-text {
        color: #d8d8d8;
      }

      .feat-tick {
        color: #eb5017;
        font-size: 18px;
        margin-right: 8px;
        flex-shrink: 0;
        line-height: 1.4;
      }

      .feat-tick-text {
        color: #404040;
        font-size: 14.5px;
        line-height: 1.5;
      }

      /* Stat band */
      .att-stat-band {
        background: linear-gradient(135deg, #eb5017 0%, #ff7849 100%);
        border-radius: 28px;
        padding: 48px 32px;
        color: #fff;
        position: relative;
        overflow: hidden;
      }

      .att-stat-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.12) 0, transparent 35%),
          radial-gradient(circle at 5% 95%, rgba(255, 255, 255, 0.08) 0, transparent 30%);
        pointer-events: none;
      }

      .att-stat-band .stat-num {
        font-size: 40px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: -1px;
        margin-bottom: 8px;
      }

      .att-stat-band .stat-label {
        font-size: 14px;
        opacity: 0.92;
        line-height: 1.4;
      }

      /* Module grid */
      .module-card {
        background: #fff;
        border: 1px solid #f0e6df;
        border-radius: 18px;
        padding: 26px 22px;
        height: 100%;
        transition: all 0.25s ease;
      }

      .module-card p {
        color: var(--text-2);
        font-size: var(--font-size-sm, 0.9rem);
        margin: 0;
        line-height: var(--line-height-relaxed, 1.55);
      }

      .module-card:hover {
        border-color: #eb5017;
        box-shadow: 0 14px 28px rgba(235, 80, 23, 0.08);
        transform: translateY(-3px);
      }

      .module-card .mod-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: #fdeee7;
        color: #eb5017;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-bottom: 16px;
      }

      .module-card h6 {
        margin-bottom: 8px;
        color: #1a1a1a;
        font-weight: 600;
        font-size: 1.05rem;
      }

      .module-card .mod-tags {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
      }

      .module-card .mod-tag {
        font-size: 11px;
        padding: 4px 10px;
        border-radius: 999px;
        background: #faf3ee;
        color: #6b4133;
        font-weight: 500;
      }

      /* Comparison table */
      .compare-wrap {
        background: #fff;
        border-radius: 24px;
        border: 1px solid #f1e2d8;
        overflow: hidden;
      }

      .compare-row {
        display: grid;
        grid-template-columns: 1fr 1.5fr 1.7fr;
        border-bottom: 1px solid #f5ece5;
      }

      .compare-row:last-child {
        border-bottom: 0;
      }

      .compare-row > div {
        padding: 18px 22px;
        font-size: 14.5px;
      }

      .compare-row.head > div {
        font-weight: 700;
        background: #faf3ee;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.6px;
      }

      .compare-row.head .col-trackk {
        background: #eb5017;
        color: #fff;
      }

      .compare-row.head .col-trackk {
    position: relative;
}

      .compare-row.head .col-trackk::before {
          content: "RECOMMENDED";
          position: absolute;
          top: 17px;
          left: 190px;
          font-size: 0.6rem;
          background: #f1fcc8;
          color: #1a1a1a;
          padding: 2px 8px;
          border-radius: 999px;
          letter-spacing: 0.08em;
          font-weight: 700;
      }

      .compare-row .col-old {
        color: #8a6f64;
      }

      .compare-row .col-trackk {
        color: #1a1a1a;
        font-weight: 500;
        background: #fffaf6;
      }

      .compare-row .col-trackk .bi {
        color: #eb5017;
        margin-right: 6px;
      }

      .compare-row .col-old .bi {
        color: #c97a5b;
        margin-right: 6px;
      }

      @media (max-width: 768px) {
        .compare-row {
          grid-template-columns: 1fr;
        }
        .compare-row.head .col-old,
        .compare-row.head .col-trackk {
          display: none;
        }
        .compare-row > div {
          padding: 12px 18px;
        }
        .compare-row .col-old::before {
          content: "Old way: ";
          font-weight: 700;
          color: #c97a5b;
        }
        .compare-row .col-trackk::before {
          content: "With Trackk: ";
          font-weight: 700;
          color: #eb5017;
        }
      }

      /* Reports infographic */
      .report-card {
        background: #fff;
        border: 1px solid #f0e6df;
        border-radius: 20px;
        padding: 24px;
        height: 100%;
      }

      .bar-chart {
        display: flex;
        align-items: flex-end;
        gap: 10px;
        height: 110px;
        margin-top: 18px;
      }

      .bar-chart .bar {
        flex: 1;
        background: #fdeee7;
        border-radius: 6px 6px 0 0;
        position: relative;
        transition: background 0.25s;
      }

      .bar-chart .bar.active {
        background: #eb5017;
      }

      .bar-chart .bar::after {
        content: attr(data-day);
        position: absolute;
        bottom: -22px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 10px;
        color: #8a8a8a;
        font-weight: 500;
      }

      .donut-wrap {
        display: flex;
        align-items: center;
        gap: 18px;
      }

      .donut {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        background: conic-gradient(#eb5017 0 78%, #fdeee7 78% 92%, #f1fcc8 92% 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        flex-shrink: 0;
      }

      .donut::after {
        content: "";
        width: 70px;
        height: 70px;
        background: #fff;
        border-radius: 50%;
        position: absolute;
      }

      .donut-center {
        position: relative;
        z-index: 2;
        text-align: center;
      }

      .donut-center .v {
        font-size: 22px;
        font-weight: 800;
        color: #1a1a1a;
        line-height: 1;
      }

      .donut-center .l {
        font-size: 10px;
        color: #8a8a8a;
        font-weight: 500;
      }

      .legend-row {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        margin-bottom: 6px;
      }

      .legend-dot {
        width: 10px;
        height: 10px;
        border-radius: 3px;
      }

      /* Geo fence ring */
      .geo-rings {
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        border: 2px dashed rgba(235, 80, 23, 0.35);
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .geo-rings::before {
        content: "";
        position: absolute;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        border: 2px solid rgba(235, 80, 23, 0.5);
      }

      .geo-rings::after {
        content: "";
        position: absolute;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: rgba(235, 80, 23, 0.15);
        animation: pulse 2.4s ease-in-out infinite;
      }

      @keyframes pulse {
        0%,
        100% {
          transform: scale(1);
          opacity: 0.6;
        }
        50% {
          transform: scale(1.1);
          opacity: 1;
        }
      }

      .geo-pin {
        position: relative;
        z-index: 3;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #eb5017;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        box-shadow: 0 8px 20px rgba(235, 80, 23, 0.45);
      }

      /* Fingerprint visual */
      .fp-frame {
        width: 200px;
        height: 200px;
        border-radius: 24px;
        background: rgba(235, 80, 23, 0.12);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
      }

      .fp-frame::before {
        content: "";
        position: absolute;
        inset: -10px;
        border-radius: 28px;
        border: 2px solid rgba(235, 80, 23, 0.3);
        animation: scan 2.5s ease-in-out infinite;
      }

      @keyframes scan {
        0%,
        100% {
          opacity: 0.35;
          transform: scale(1);
        }
        50% {
          opacity: 0.8;
          transform: scale(1.04);
        }
      }

      .fp-frame i {
        font-size: 96px;
        color: #eb5017;
      }

      /* ROI strip */
      .roi-strip {
        background: #1a1a1a;
        color: #fff;
        border-radius: 24px;
        padding: 36px;
        position: relative;
        overflow: hidden;
      }

      .roi-strip::before {
        content: "";
        position: absolute;
        right: -80px;
        top: -80px;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(235, 80, 23, 0.35) 0, transparent 65%);
      }

      .roi-num {
        font-size: 42px;
        font-weight: 800;
        color: #ff7849;
        line-height: 1;
        margin-bottom: 6px;
      }

      /* Use case strip */
      .uc-card {
        background: #fff;
        border: 1px solid #f0e6df;
        border-radius: 18px;
        padding: 22px;
        height: 100%;
        transition: all 0.25s;
      }

      .uc-card p {
        color: var(--text-2);
        font-size: 0.9rem;
        margin: 0;
        line-height: 1.55;
      }

      .uc-card h6 {
        font-weight: 600;
        margin: 6px 0 8px;
        line-height: 1.3;
      }

      .uc-card:hover {
        background: #fdeee7;
        border-color: #eb5017;
      }

      .sec-title {
        font-weight: 600;
        margin: 6px 0 8px;
        line-height: 1.3;
      }

      .uc-card .uc-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: #fdeee7;
        color: #eb5017;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-bottom: 14px;
      }

      .uc-card:hover .uc-icon {
        background: #fff;
      }

      /* ===== "Built To Earn Its Keep" â€” Industries band ===== */
      .section-industries {
        overflow-x: hidden;
        padding: 32px 0 56px;
      }
      .ind-band {
        padding-top: 12px;
        padding-bottom: 32px;
      }
      .ind-list {
        display: grid;
        gap: 26px;
      }
      .ind-item {
        display: grid;
        grid-template-columns: 64px 1fr;
        align-items: start;
        column-gap: 18px;
        padding: 18px 18px;
        border-radius: 18px;
        background: #fff;
        border: 1px solid rgba(235, 80, 23, 0.1);
        transition:
          transform 0.3s ease,
          box-shadow 0.3s ease,
          border-color 0.3s ease,
          background 0.3s ease;
      }
      .ind-item:hover {
        transform: translateX(4px);
        border-color: rgba(235, 80, 23, 0.35);
        box-shadow: 0 18px 38px rgba(235, 80, 23, 0.1);
        background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
      }
      .ind-att {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        background: #fdeee7;
        display: grid;
        place-items: center;
        box-shadow: 0 6px 16px rgba(235, 80, 23, 0.12);
        transition: transform 0.3s ease;
      }
      .ind-item:hover .ind-att {
        transform: rotate(-4deg) scale(1.05);
      }
      .ind-att img {
        width: 30px;
        height: 30px;
        display: block;
      }
      .ind-title-feature {
        font-weight: 700;
        font-size: 1.05rem;
        line-height: 1.3;
        color: #1a1a1a;
        margin-bottom: 4px;
      }
      .ind-text {
        color: #6b7280;
        font-size: 0.95rem;
        line-height: 1.55;
        margin: 0;
      }
      @media (max-width: 991px) {
        .ind-item {
          column-gap: 14px;
        }
      }

      /* Pain â†’ Solution arrow */
      .pain-solution-bridge {
        text-align: center;
        margin: 30px 0 10px;
      }

      .pain-solution-bridge .bridge-pill {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #1a1a1a;
        color: #fff;
        padding: 12px 24px;
        border-radius: 999px;
        font-weight: 600;
        font-size: 14px;
      }

      .pain-solution-bridge .bridge-pill .bi {
        color: #ff7849;
        font-size: 18px;
      }
