.sm-sequence-grid {
              display: grid;
              grid-template-columns: 1fr;
              gap: 24px;
              margin: 40px 0 20px 0;
            }
            @media (min-width: 768px) {
              .sm-sequence-grid {
                grid-template-columns: repeat(2, 1fr);
              }
            }
            @media (min-width: 1200px) {
              .sm-sequence-grid {
                grid-template-columns: repeat(4, 1fr);
              }
            }
            .sm-seq-card {
              background: #fff;
              border: 1px solid rgba(0,0,0,0.06);
              border-radius: 12px;
              padding: 24px;
              box-shadow: 0 4px 20px -10px rgba(0,0,0,0.05);
              transition: all 0.3s ease;
              position: relative;
              overflow: hidden;
            }
            .sm-seq-card:hover {
              transform: translateY(-4px);
              border-color: var(--flame);
              box-shadow: 0 10px 30px -10px rgba(255, 107, 26, 0.15);
            }
            .sm-seq-card::before {
              content: '';
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 3px;
              background: var(--flame);
              transform: scaleX(0);
              transform-origin: left;
              transition: transform 0.4s ease;
            }
            .sm-seq-card:hover::before {
              transform: scaleX(1);
            }
            .sm-seq-num {
              font-family: 'JetBrains Mono', monospace;
              font-size: 0.75rem;
              font-weight: 700;
              letter-spacing: 0.05em;
              color: var(--flame);
              background: rgba(255, 107, 26, 0.08);
              padding: 6px 12px;
              border-radius: 20px;
              display: inline-block;
              margin-bottom: 20px;
              text-transform: uppercase;
            }
            .sm-seq-title {
              font-size: 1.1rem;
              font-weight: 700;
              margin-bottom: 12px;
              color: #111;
            }
            .sm-seq-desc {
              font-size: 0.9rem;
              line-height: 1.6;
              color: rgba(0,0,0,0.65);
            }
.sm-foundations-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-top: 48px;
            align-items: start;
          }
          .sm-foundations-col {
            display: flex;
            flex-direction: column;
            gap: 24px;
          }
          .sm-card {
            background: rgba(245, 242, 238, 0.8);
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 12px;
            padding: 32px;
          }
          .sm-card-title {
            font-family: 'Inter', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
            color: #111;
          }
          .sm-card-desc {
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(0,0,0,0.7);
            margin-bottom: 24px;
          }
          .sm-card-list {
            list-style: none;
            padding: 0;
            margin: 0;
          }
          .sm-card-list li {
            display: flex;
            align-items: start;
            gap: 10px;
            font-size: 0.9rem;
            line-height: 1.5;
            color: rgba(0,0,0,0.8);
            margin-bottom: 12px;
          }
          .sm-card-list li:last-child {
            margin-bottom: 0;
          }
          @media (min-width: 768px) {
            .sm-foundations-grid {
              grid-template-columns: 1fr 1fr;
            }
          }
.industry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 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: left;
            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: 44px;
            height: 44px;
            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.1rem;
            font-weight: 600;
            margin-bottom: 8px;
          }

          .industry-desc {
            font-size: 0.875rem;
            color: rgba(0, 0, 0, 0.65);
            line-height: 1.5;
          }

          body.dark .industry-desc {
            color: rgba(255, 255, 255, 0.65);
          }
.services-tab-container {
            display: flex;
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
            background: var(--bg);
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.05);
          }

          body.dark .services-tab-container {
            border-color: rgba(255, 255, 255, 0.05);
          }

          .services-tabs {
            flex: 0 0 280px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            border-right: 1px solid rgba(0, 0, 0, 0.05);
            padding-right: 24px;
            max-height: 600px;
            overflow-y: auto;
          }

          body.dark .services-tabs {
            border-right-color: rgba(255, 255, 255, 0.05);
          }

          .services-tabs::-webkit-scrollbar {
            width: 4px;
          }

          .services-tabs::-webkit-scrollbar-thumb {
            background: rgba(0, 0, 0, 0.1);
            border-radius: 4px;
          }

          body.dark .services-tabs::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.1);
          }

          .service-tab {
            padding: 12px 16px;
            text-align: left;
            background: none;
            border: none;
            border-radius: 8px;
            font-size: 0.95rem;
            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: #fff;
            background: var(--flame);
            font-weight: 600;
          }

          body.dark .service-tab.active {
            color: #fff;
          }

          .services-content-panels {
            flex: 1;
            position: relative;
            min-height: 400px;
          }

          .service-panel {
            display: none;
            animation: fadeInPanel 0.4s ease forwards;
          }

          .service-panel.active {
            display: block;
          }

          @keyframes fadeInPanel {
            from {
              opacity: 0;
              transform: translateY(10px);
            }

            to {
              opacity: 1;
              transform: translateY(0);
            }
          }

          .service-panel h3 {
            font-size: 1.75rem;
            margin-bottom: 16px;
            color: var(--text);
          }

          .service-panel p {
            font-size: 1.1rem;
            color: rgba(0, 0, 0, 0.65);
            margin-bottom: 32px;
            line-height: 1.6;
          }

          body.dark .service-panel p {
            color: rgba(255, 255, 255, 0.65);
          }

          .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: 850px;
            }

            .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.65);
              margin: 0;
              line-height: 1.6;
            }

            body.dark .timeline-content p {
              color: rgba(255, 255, 255, 0.65);
            }

            .kpi-grid {
              display: grid;
              grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
              gap: 16px;
              margin-top: 32px;
            }

            .kpi-card {
              padding: 24px;
              border-radius: 16px;
              background: var(--bg-alt);
              border: 1px solid rgba(0, 0, 0, 0.05);
              text-align: left;
            }

            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;
              margin-bottom: 8px;
            }

            .kpi-card p {
              font-size: 0.875rem;
              color: rgba(0,0,0,0.65);
              line-height: 1.5;
              margin: 0;
            }

            body.dark .kpi-card p {
              color: rgba(255,255,255,0.65);
            }
.tools-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start;
            gap: 16px;
          }

          .tool-badge {
            background: var(--bg);
            border: 1px solid rgba(0, 0, 0, 0.05);
            padding: 16px 24px;
            border-radius: 16px;
            font-weight: 500;
            color: rgba(0, 0, 0, 0.8);
            font-size: 0.95rem;
            display: flex;
            flex-direction: column;
            gap: 6px;
            flex: 1 1 calc(50% - 16px);
            min-width: 280px;
            transition: all 0.3s ease;
          }

          body.dark .tool-badge {
            border-color: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.8);
          }

          .tool-badge strong {
            color: var(--text);
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 8px;
          }

          .tool-badge:hover {
            border-color: var(--flame);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px 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: 1fr;
            gap: 24px;
          }

          @media (min-width: 768px) {
            .blog-grid {
              grid-template-columns: repeat(3, 1fr);
            }
          }

          .blog-card {
            background: var(--bg-alt);
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: inherit;
          }

          .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
          }

          .blog-img {
            width: 100%;
            height: 200px;
            background-color: #f1f5f9;
            object-fit: cover;
          }

          .blog-content {
            padding: 30px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
          }

          .blog-meta {
            font-size: 0.85rem;
            color: var(--flame);
            font-weight: 600;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
          }

          .blog-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 16px;
            line-height: 1.4;
          }

          .blog-desc {
            color: rgba(0, 0, 0, 0.65);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 24px;
            flex-grow: 1;
          }

          .blog-readmore {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            color: var(--text);
            font-size: 0.95rem;
            transition: color 0.2s ease;
          }

          .blog-card:hover .blog-readmore {
            color: var(--flame);
          }

          body.dark .blog-card {
            border-color: rgba(255, 255, 255, 0.05);
          }

          body.dark .blog-desc {
            color: rgba(255, 255, 255, 0.65);
          }