/* Extracted from eeat.html */

/* Hero Carousel Animation */
    .hero-carousel {
      display: inline-flex;
      flex-direction: column;
      height: 1.1em;
      overflow: hidden;
      vertical-align: top;
      position: relative;
      color: var(--flame);
    }

    .hero-carousel__inner {
      display: flex;
      flex-direction: column;
      animation: scroll-words 6s cubic-bezier(0.8, 0, 0.2, 1) infinite;
    }

    .hero-carousel__word {
      height: 1.1em;
      display: flex;
      align-items: center;
    }

    @keyframes scroll-words {

      0%,
      22% {
        transform: translateY(0);
      }

      33%,
      55% {
        transform: translateY(-1.1em);
      }

      66%,
      88% {
        transform: translateY(-2.2em);
      }

      100% {
        transform: translateY(-3.3em);
      }
    }

    /* Bento Icon Animation */
    @keyframes float-icon {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }
    }

    .bento-card__icon-wrap svg {
      animation: float-icon 4s ease-in-out infinite;
    }

    /* Knowledge Graph Anim */
    .kg-path {
      animation: dash-flow 3s linear infinite;
    }

    .kg-node {
      transform-origin: center;
      animation: node-pulse 2s ease-in-out infinite alternate;
    }

    @keyframes dash-flow {
      to {
        stroke-dashoffset: -100;
      }
    }

    @keyframes node-pulse {
      from {
        transform: scale(1);
      }

      to {
        transform: scale(1.3);
      }
    }

    /* Pulse Ring Anim */
    .pulse-container {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .pulse-ring {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 2px solid var(--flame);
      animation: pulse-out 2s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
      opacity: 0;
    }

    @keyframes pulse-out {
      0% {
        transform: scale(0.8);
        opacity: 0.8;
      }

      100% {
        transform: scale(1.8);
        opacity: 0;
      }
    }

    /* Document Scan Anim */
    .scan-container {
      position: relative;
      overflow: hidden;
    }

    .scan-line {
      position: absolute;
      top: 0;
      left: -10%;
      width: 120%;
      height: 2px;
      background: var(--flame);
      box-shadow: 0 0 8px var(--flame);
      animation: scan-doc 2s linear infinite alternate;
      z-index: 2;
    }

    @keyframes scan-doc {
      0% {
        top: 10%;
        opacity: 0;
      }

      20% {
        opacity: 1;
      }

      80% {
        opacity: 1;
      }

      100% {
        top: 90%;
        opacity: 0;
      }
    }

    /* Shield Anim */
    .shield-container {
      position: relative;
    }

    .shield-check {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      animation: pop-check 3s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
    }

    @keyframes pop-check {

      0%,
      20% {
        transform: translate(-50%, -50%) scale(0);
      }

      40%,
      80% {
        transform: translate(-50%, -50%) scale(1);
      }

      100% {
        transform: translate(-50%, -50%) scale(0);
      }
    }

    /* Gauge Anim */
    .gauge-container {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: flex-end;
    }

    .gauge-path {
      stroke-dasharray: 126;
      stroke-dashoffset: 126;
      animation: fill-gauge 3s ease-in-out infinite alternate;
    }

    .gauge-needle-wrap {
      position: absolute;
      bottom: 5px;
      left: 50%;
      width: 0;
      height: 0;
    }

    .gauge-needle {
      position: absolute;
      bottom: 0;
      left: -2px;
      width: 4px;
      height: 35px;
      background: #eab308;
      transform-origin: bottom center;
      border-radius: 2px;
      animation: spin-needle 3s ease-in-out infinite alternate;
    }

    @keyframes fill-gauge {
      0% {
        stroke-dashoffset: 126;
      }

      100% {
        stroke-dashoffset: 20;
      }
    }

    @keyframes spin-needle {
      0% {
        transform: rotate(-90deg);
      }

      100% {
        transform: rotate(60deg);
      }
    }

    /* Contrast Fixes for Light Mode */
    body:not(.dark) .pillar-grid .card.pillar h3 {
      color: var(--text, #1a1a1a) !important;
    }

    body:not(.dark) .pillar-grid .card.pillar p,
    body:not(.dark) .pillar-grid .card.pillar ul li {
      color: rgba(0, 0, 0, 0.75) !important;
    }

    body:not(.dark) .industry-card .industry-title {
      color: var(--text, #1a1a1a) !important;
    }

    body:not(.dark) .industry-card .industry-desc {
      color: rgba(0, 0, 0, 0.75) !important;
    }

    body:not(.dark) .service-panel h3 {
      color: var(--text, #1a1a1a) !important;
    }

    body:not(.dark) .service-check-list li,
    body:not(.dark) .service-panel p {
      color: rgba(0, 0, 0, 0.75) !important;
    }

    body:not(.dark) .timeline-content h4 {
      color: var(--text, #1a1a1a) !important;
    }

    body:not(.dark) .timeline-content p {
      color: rgba(0, 0, 0, 0.75) !important;
    }

    body:not(.dark) .kpi-card h4,
    body:not(.dark) .case-title {
      color: var(--text, #1a1a1a) !important;
    }

    body:not(.dark) .faq-list .faq-row:not(.open) .q {
      color: var(--text, #1a1a1a) !important;
    }

    body:not(.dark) .faq-list .faq-row:not(.open) .plus {
      color: rgba(0, 0, 0, 0.4) !important;
      border-color: rgba(0, 0, 0, 0.15) !important;
    }

    body:not(.dark) .faq-list .faq-answer {
      color: rgba(0, 0, 0, 0.75) !important;
    }

    body:not(.dark) .faq-list .faq-row {
      border-bottom-color: rgba(0, 0, 0, 0.1) !important;
    }

.pillar-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
          }

          @media (max-width: 900px) {
            .pillar-grid {
              grid-template-columns: 1fr;
            }
          }

          .card.pillar {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 12px;
            padding: 32px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, border-color 0.3s ease;
          }

          body.dark .card.pillar {
            background: rgba(255, 255, 255, 0.03);
            border-color: rgba(255, 255, 255, 0.05);
          }

          .card.pillar:hover {
            transform: translateY(-5px);
            border-color: var(--flame);
          }

          .card.pillar .pnum {
            font-size: 4rem;
            font-weight: 700;
            color: rgba(234, 88, 12, 0.1);
            position: absolute;
            top: -10px;
            right: 10px;
            pointer-events: none;
            line-height: 1;
            font-family: 'Playfair Display', serif;
          }

.industry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
          }

          .industry-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            transition: all 0.3s ease;
          }

          body.dark .industry-card {
            border-color: rgba(255, 255, 255, 0.05);
            background: rgba(255, 255, 255, 0.01);
          }

          .industry-card:hover {
            transform: translateY(-4px);
            border-color: var(--flame);
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
          }

          body.dark .industry-card:hover {
            background: rgba(255, 255, 255, 0.03);
          }

          .industry-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.03);
            color: var(--flame);
            margin-bottom: 16px;
          }

          body.dark .industry-icon {
            background: rgba(255, 255, 255, 0.05);
          }

          .industry-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 8px;
          }

          .industry-desc {
            font-size: 0.875rem;
            color: rgba(0, 0, 0, 0.6);
          }

          body.dark .industry-desc {
            color: rgba(255, 255, 255, 0.6);
          }

.services-tab-container {
            display: flex;
            background: var(--bg);
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 16px;
            overflow: hidden;
            min-height: 500px;
          }

          body.dark .services-tab-container {
            border-color: rgba(255, 255, 255, 0.05);
          }

          .services-tabs {
            flex: 0 0 300px;
            background: rgba(0, 0, 0, 0.02);
            border-right: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            padding: 24px 0;
            overflow-y: auto;
          }

          body.dark .services-tabs {
            background: rgba(255, 255, 255, 0.02);
            border-right-color: rgba(255, 255, 255, 0.05);
          }

          .service-tab {
            text-align: left;
            padding: 16px 24px;
            background: none;
            border: none;
            border-left: 3px solid transparent;
            font-size: 1rem;
            font-weight: 500;
            color: rgba(0, 0, 0, 0.6);
            cursor: pointer;
            transition: all 0.2s ease;
          }

          body.dark .service-tab {
            color: rgba(255, 255, 255, 0.6);
          }

          .service-tab:hover {
            color: var(--text);
            background: rgba(0, 0, 0, 0.03);
          }

          body.dark .service-tab:hover {
            background: rgba(255, 255, 255, 0.03);
          }

          .service-tab.active {
            color: var(--flame);
            border-left-color: var(--flame);
            background: var(--bg);
            font-weight: 600;
          }

          body.dark .service-tab.active {
            background: var(--bg);
          }

          .services-content-panels {
            flex: 1;
            padding: 40px;
            position: relative;
          }

          .service-panel {
            display: none;
            animation: fadeIn 0.4s ease forwards;
          }

          .service-panel.active {
            display: block;
          }

          @keyframes fadeIn {
            from {
              opacity: 0;
              transform: translateY(10px);
            }

            to {
              opacity: 1;
              transform: translateY(0);
            }
          }

          .service-panel h3 {
            font-size: 1.75rem;
            margin-bottom: 16px;
          }

          .service-panel p {
            font-size: 1.1rem;
            color: rgba(0, 0, 0, 0.7);
            margin-bottom: 32px;
            max-width: 600px;
          }

          body.dark .service-panel p {
            color: rgba(255, 255, 255, 0.7);
          }

          .service-check-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
          }

          .service-check-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 1rem;
            line-height: 1.5;
            padding: 16px;
            background: rgba(0, 0, 0, 0.02);
            border-radius: 8px;
            border: 1px solid rgba(0, 0, 0, 0.03);
          }

          body.dark .service-check-list li {
            background: rgba(255, 255, 255, 0.02);
            border-color: rgba(255, 255, 255, 0.03);
          }

          .service-check-list svg {
            flex-shrink: 0;
            color: var(--flame);
            margin-top: 2px;
          }

          @media (max-width: 768px) {
            .services-tab-container {
              flex-direction: column;
              padding: 24px;
            }

            .services-tabs {
              flex: none;
              border-right: none;
              border-bottom: 1px solid rgba(0, 0, 0, 0.05);
              padding-right: 0;
              padding-bottom: 24px;
              max-height: 300px;
            }
          }

.timeline {
              display: flex;
              flex-direction: column;
              gap: 24px;
              position: relative;
              max-width: 800px;
            }

            .timeline::before {
              content: '';
              position: absolute;
              left: 24px;
              top: 12px;
              bottom: 12px;
              width: 2px;
              background: rgba(0, 0, 0, 0.05);
            }

            body.dark .timeline::before {
              background: rgba(255, 255, 255, 0.05);
            }

            .timeline-item {
              display: flex;
              gap: 24px;
              position: relative;
            }

            .timeline-dot {
              width: 50px;
              height: 50px;
              border-radius: 50%;
              background: var(--bg);
              border: 2px solid var(--flame);
              display: flex;
              align-items: center;
              justify-content: center;
              font-weight: 700;
              color: var(--flame);
              flex-shrink: 0;
              z-index: 2;
            }

            .timeline-content {
              background: rgba(0, 0, 0, 0.02);
              border: 1px solid rgba(0, 0, 0, 0.03);
              padding: 24px;
              border-radius: 16px;
              flex: 1;
            }

            body.dark .timeline-content {
              background: rgba(255, 255, 255, 0.02);
              border-color: rgba(255, 255, 255, 0.03);
            }

            .timeline-content h4 {
              font-size: 1.25rem;
              margin-bottom: 8px;
            }

            .timeline-content p {
              color: rgba(0, 0, 0, 0.6);
              margin: 0;
            }

            body.dark .timeline-content p {
              color: rgba(255, 255, 255, 0.6);
            }

            /* KPIs Grid */
            .kpi-grid {
              display: grid;
              grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
              gap: 16px;
              margin-top: 48px;
            }

            .kpi-card {
              padding: 24px;
              border-radius: 16px;
              background: var(--bg-alt);
              border: 1px solid rgba(0, 0, 0, 0.05);
              text-align: center;
            }

            body.dark .kpi-card {
              border-color: rgba(255, 255, 255, 0.05);
            }

            .kpi-card svg {
              color: var(--flame);
              margin-bottom: 12px;
            }

            .kpi-card h4 {
              font-size: 1.1rem;
              font-weight: 600;
            }

.tools-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
          }

          .tool-badge {
            background: var(--bg);
            border: 1px solid rgba(0, 0, 0, 0.05);
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 600;
            color: rgba(0, 0, 0, 0.7);
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
          }

          body.dark .tool-badge {
            border-color: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.7);
          }

          .tool-badge:hover {
            border-color: var(--flame);
            color: var(--flame);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          }

.cases-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
          }

          @media (min-width: 768px) {
            .cases-grid {
              grid-template-columns: repeat(3, 1fr);
            }
          }

          .case-card {
            background: rgba(0, 0, 0, 0.02);
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s ease;
          }

          body.dark .case-card {
            background: rgba(255, 255, 255, 0.02);
            border-color: rgba(255, 255, 255, 0.05);
          }

          .case-card:hover {
            transform: translateY(-5px);
            border-color: var(--flame);
            background: var(--bg);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
          }

          .case-metric {
            font-size: 3rem;
            font-weight: 700;
            color: var(--flame);
            line-height: 1;
            letter-spacing: -0.05em;
            margin-bottom: 8px;
          }

          .case-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 16px;
          }

          .case-desc {
            color: rgba(0, 0, 0, 0.65);
            line-height: 1.6;
            margin-bottom: 24px;
          }

          body.dark .case-desc {
            color: rgba(255, 255, 255, 0.65);
          }

.blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
          }

          .blog-card {
            background: var(--bg);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
          }

          body.dark .blog-card {
            border-color: rgba(255, 255, 255, 0.05);
          }

          .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            border-color: rgba(0, 0, 0, 0.1);
          }

          body.dark .blog-card:hover {
            border-color: rgba(255, 255, 255, 0.1);
          }

          .blog-img-wrap {
            height: 200px;
            background: rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
          }

          body.dark .blog-img-wrap {
            background: rgba(255, 255, 255, 0.03);
          }

          .blog-content {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
          }

          .blog-category {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            color: var(--flame);
            margin-bottom: 12px;
          }

          .blog-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.4;
            color: #111;
          }

          body.dark .blog-title {
            color: #fff;
          }

          .blog-excerpt {
            color: rgba(0, 0, 0, 0.6);
            font-size: 0.95rem;
            margin-bottom: 24px;
            flex: 1;
          }

          body.dark .blog-excerpt {
            color: rgba(255, 255, 255, 0.6);
          }

          .blog-read-more {
            font-weight: 600;
            color: #111;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
          }

          body.dark .blog-read-more {
            color: #fff;
          }

          .blog-read-more:hover {
            color: var(--flame);
          }

          body.dark .blog-read-more:hover {
            color: var(--flame);
          }

          .blog-header-link {
            color: #111;
            border-color: rgba(0, 0, 0, 0.1);
          }

          body.dark .blog-header-link {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.1);
          }

