/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
    :root {
      --brand: #8327D2;
      --brand-dark: #6A1FB0;
      --brand-deep: #510F92;
      --brand-light: #9F45E8;
      --brand-pale: #F3EAFD;
      --brand-soft: #EAD8FA;
      --brand-mid: #C598F0;

      --surface: #FFFFFF;
      --canvas: #F9F7FD;
      --canvas-alt: #F2EEF9;
      --border: #E6DFF5;
      --border-soft: #EDE8F6;

      --ink-900: #0F0B1A;
      --ink-700: #2D2240;
      --ink-500: #5E4D78;
      --ink-400: #8474A0;
      --ink-300: #B0A2C8;
      --ink-200: #D7CEED;
      --ink-100: #EDE8F6;

      --success: #12B76A;
      --warning: #F79009;
      --danger: #F04438;

      --ff-heading: 'Sora', sans-serif;
      --ff-body: 'DM Sans', sans-serif;

      --r-sm: 8px;
      --r-md: 12px;
      --r-lg: 16px;
      --r-xl: 24px;
      --r-full: 999px;

      --shadow-xs: 0 1px 2px rgba(131, 39, 210, 0.06);
      --shadow-sm: 0 2px 8px rgba(131, 39, 210, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 4px 20px rgba(131, 39, 210, 0.12), 0 2px 6px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 12px 48px rgba(131, 39, 210, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06);
      --shadow-glow: 0 0 0 3px rgba(131, 39, 210, 0.16);
    }

    /* ─── RESET & BASE ───────────────────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--ff-body);
      background: var(--canvas);
      color: var(--ink-700);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      display: block;
      max-width: 100%;
    }

    ul {
      list-style: none;
    }

    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--canvas);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--ink-200);
      border-radius: 99px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--brand-mid);
    }

    /* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: var(--ff-heading);
      color: var(--ink-900);
      letter-spacing: -0.025em;
      line-height: 1.15;
    }

    h1 {
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 800;
    }

    h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.75rem);
      font-weight: 700;
    }

    h3 {
      font-size: 1.25rem;
      font-weight: 600;
    }

    h4 {
      font-size: 1rem;
      font-weight: 600;
    }

    p {
      color: var(--ink-500);
      font-size: 1rem;
      line-height: 1.7;
    }

    .label {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand);
    }

    /* ─── UTILITIES ──────────────────────────────────────────────── */
    .container {
      /* max-width: 1200px;
      margin-inline: auto;
      padding-inline: clamp(1.25rem, 4vw, 5rem); */
      max-width: 1600px;
      margin-inline: auto;
      padding: 0 100px 0 100px;
    }

    @media (max-width: 560px) {
      .container {
        /* max-width: 1200px; */
        margin-inline: auto;
        /* padding-inline: clamp(1.25rem, 4vw, 5rem); */
        padding: 0 20px 0 20px;
      }
    }

    .section {
      padding: 6rem 0;
    }

    .section-sm {
      padding: 4rem 0;
    }

    .section-header {
      margin-bottom: 3.5rem;
      max-width: 560px;
    }

    .section-header.centered {
      max-width: 640px;
      margin-inline: auto;
      text-align: center;
    }

    .section-header .label {
      display: block;
      margin-bottom: 0.75rem;
    }

    .section-header h2 {
      margin-bottom: 1rem;
    }

    .section-header p {
      font-size: 1.0625rem;
      color: var(--ink-500);
    }

    em {
      font-style: normal;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.3125rem 0.875rem;
      border-radius: var(--r-full);
      background: var(--brand-pale);
      border: 1px solid var(--brand-soft);
      font-size: 0.75rem;
      font-weight: 600;
      font-family: var(--ff-heading);
      color: var(--brand-dark);
    }

    /* ─── BUTTONS ────────────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem 1.625rem;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      outline: none;
      transition: all 0.2s ease;
    }

    .btn-primary {
      background: var(--brand);
      color: #fff;
      box-shadow: 0 4px 20px rgba(131, 39, 210, 0.35);
    }

    .btn-primary:hover {
      background: var(--brand-dark);
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(131, 39, 210, 0.45);
    }

    .btn-primary:active {
      transform: translateY(0);
    }

    .btn-outline {
      background: transparent;
      color: var(--ink-700);
      border: 1.5px solid var(--border);
    }

    .btn-outline:hover {
      border-color: var(--brand-mid);
      color: var(--brand);
      background: var(--brand-pale);
    }

    .btn-ghost {
      background: transparent;
      color: var(--brand);
      padding-inline: 0;
    }

    .btn-ghost:hover {
      color: var(--brand-dark);
    }

    .btn-sm {
      padding: 0.5rem 1.125rem;
      font-size: 0.875rem;
      border-radius: var(--r-sm);
    }

    .btn-lg {
      padding: 0.9375rem 2rem;
      font-size: 1rem;
    }



    /* ─── BREADCRUMB ─────────────────────────────────────────────── */
    .breadcrumb-bar {
      padding-top: 90px;
      padding-bottom: 0;
      background: var(--canvas);
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8125rem;
      color: var(--ink-400);
      font-family: var(--ff-heading);
      font-weight: 500;
      padding: 1rem 0 0;
    }

    .breadcrumb a {
      color: var(--ink-400);
      transition: color 0.15s;
    }

    .breadcrumb a:hover {
      color: var(--brand);
    }

    .breadcrumb-sep {
      color: var(--ink-200);
    }

    .breadcrumb-current {
      color: var(--brand);
      font-weight: 600;
    }

    /* ─── SERVICE HERO ───────────────────────────────────────────── */
    .service-hero {
      padding: 3rem 0 5rem;
      position: relative;
      overflow: hidden;
      background: var(--canvas);
    }

    .service-hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .service-hero-orb-1 {
      position: absolute;
      top: -160px;
      right: -120px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle at center, rgba(131, 39, 210, 0.10) 0%, transparent 65%);
    }

    .service-hero-orb-2 {
      position: absolute;
      bottom: -80px;
      left: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle at center, rgba(131, 39, 210, 0.06) 0%, transparent 65%);
    }

    .service-hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(131, 39, 210, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(131, 39, 210, 0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 0%, transparent 80%);
    }

    .service-hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .service-hero-left {}

    .service-hero-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }

    .service-hero-label-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 0 3px rgba(131, 39, 210, 0.18);
    }

    .service-hero-h1 {
      margin-bottom: 1.25rem;
    }

    .service-hero-desc {
      font-size: 1.0625rem;
      line-height: 1.75;
      color: var(--ink-500);
      max-width: 480px;
      margin-bottom: 2.25rem;
    }

    .service-hero-ctas {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .service-hero-stats {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .hero-stat {
      display: flex;
      flex-direction: column;
      gap: 0.125rem;
    }

    .hero-stat-val {
      font-family: var(--ff-heading);
      font-size: 1.625rem;
      font-weight: 800;
      color: var(--ink-900);
      line-height: 1;
    }

    .hero-stat-label {
      font-size: 0.8125rem;
      color: var(--ink-400);
    }

    .hero-stat-divider {
      width: 1px;
      height: 2.5rem;
      align-self: center;
      background: var(--border);
    }

    /* Hero visual — abstract service illustration */
    .service-hero-visual {
      position: relative;
    }

    .service-hero-card {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 24px;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }

    .shc-header {
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
      padding: 1.5rem 1.75rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .shc-icon-wrap {
      width: 48px;
      height: 48px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 14px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .shc-icon-wrap svg {
      color: #fff;
    }

    .shc-title {
      font-family: var(--ff-heading);
      font-size: 1.0625rem;
      font-weight: 700;
      color: #fff;
    }

    .shc-subtitle {
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.75);
      margin-top: 2px;
    }

    .shc-body {
      padding: 1.5rem 1.75rem;
    }

    .shc-modules {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.625rem;
    }

    .shc-module {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      background: var(--canvas);
      border: 1px solid var(--border-soft);
      border-radius: var(--r-md);
      padding: 0.75rem 0.875rem;
      transition: all 0.2s ease;
      cursor: default;
    }

    .shc-module:hover {
      background: var(--brand-pale);
      border-color: var(--brand-soft);
    }

    .shc-module-icon {
      width: 32px;
      height: 32px;
      background: var(--brand-pale);
      border-radius: var(--r-sm);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      color: var(--brand);
      transition: all 0.2s ease;
    }

    .shc-module:hover .shc-module-icon {
      background: var(--brand);
      color: #fff;
    }

    .shc-module-name {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--ink-700);
    }

    .shc-footer {
      padding: 1rem 1.75rem 1.5rem;
      border-top: 1px solid var(--border-soft);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .shc-status {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8125rem;
      font-weight: 600;
      font-family: var(--ff-heading);
      color: var(--success);
    }

    .shc-status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--success);
      box-shadow: 0 0 0 3px rgba(18, 183, 106, 0.2);
      animation: pulse-green 2s ease-in-out infinite;
    }

    @keyframes pulse-green {

      0%,
      100% {
        box-shadow: 0 0 0 3px rgba(18, 183, 106, 0.2);
      }

      50% {
        box-shadow: 0 0 0 6px rgba(18, 183, 106, 0.08);
      }
    }

    .shc-meta {
      font-size: 0.75rem;
      color: var(--ink-400);
      font-family: var(--ff-heading);
    }

    /* Floating stat badges on hero visual */
    .hero-float-badge {
      position: absolute;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-md);
      padding: 0.75rem 1rem;
      z-index: 2;
    }

    .hfb-1 {
      top: -20px;
      right: -24px;
      animation: floatA 6s ease-in-out infinite;
    }

    .hfb-2 {
      bottom: 30px;
      left: -24px;
      animation: floatB 5s ease-in-out infinite 0.8s;
    }

    .hfb-label {
      font-size: 0.625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--ink-400);
      font-family: var(--ff-heading);
      margin-bottom: 0.2rem;
    }

    .hfb-val {
      font-size: 1.25rem;
      font-weight: 800;
      font-family: var(--ff-heading);
      color: var(--ink-900);
      line-height: 1;
    }

    .hfb-sub {
      font-size: 0.6875rem;
      color: var(--ink-400);
      margin-top: 2px;
    }

    .hfb-trend {
      display: inline-flex;
      align-items: center;
      gap: 0.2rem;
      font-size: 0.6875rem;
      font-weight: 700;
      color: var(--success);
      background: rgba(18, 183, 106, 0.1);
      padding: 0.15rem 0.4rem;
      border-radius: 99px;
      margin-top: 4px;
    }

    @keyframes floatA {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    @keyframes floatB {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(6px);
      }
    }

    /* ─── OVERVIEW SECTION ───────────────────────────────────────── */
    .overview-section {
      background: var(--surface);
      padding: 6rem 0;
    }

    .overview-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .overview-content .section-header {
      margin-bottom: 2rem;
    }

    .overview-body p {
      margin-bottom: 1.25rem;
    }

    .overview-body p:last-child {
      margin-bottom: 0;
    }

    .overview-checklist {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 2rem;
    }

    .overview-check-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .check-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--brand-pale);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      margin-top: 1px;
      color: var(--brand);
      transition: all 0.2s ease;
    }

    .overview-check-item:hover .check-icon {
      background: var(--brand);
      color: #fff;
    }

    .check-text {
      font-size: 0.9375rem;
      color: var(--ink-700);
      line-height: 1.6;
    }

    /* Overview visual — stacked metrics */
    .overview-visual {
      position: relative;
    }

    .overview-metric-stack {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .om-card {
      background: var(--canvas);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      padding: 1.5rem 1.75rem;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      transition: all 0.25s ease;
      cursor: default;
    }

    .om-card:hover {
      transform: translateX(6px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-soft);
    }

    .om-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      transition: all 0.25s ease;
    }

    .om-card:hover .om-icon {
      transform: scale(1.05) rotate(-4deg);
    }

    .om-icon.purple {
      background: var(--brand-pale);
      color: var(--brand);
    }

    .om-icon.blue {
      background: rgba(59, 130, 246, 0.1);
      color: #3B82F6;
    }

    .om-icon.green {
      background: rgba(18, 183, 106, 0.1);
      color: var(--success);
    }

    .om-icon.amber {
      background: rgba(247, 144, 9, 0.1);
      color: var(--warning);
    }

    .om-content {
      flex: 1;
    }

    .om-title {
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.2rem;
    }

    .om-desc {
      font-size: 0.8125rem;
      color: var(--ink-400);
      line-height: 1.5;
    }

    .om-badge {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--success);
      background: rgba(18, 183, 106, 0.1);
      padding: 0.2rem 0.6rem;
      border-radius: 99px;
      flex-shrink: 0;
    }

    /* ─── KEY FEATURES ───────────────────────────────────────────── */
    .features-section {
      background: var(--canvas);
      padding: 6rem 0;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .feature-card {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      padding: 2rem 1.75rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      opacity: 0;
      transition: opacity 0.25s ease;
      border-radius: 20px 20px 0 0;
    }

    .feature-card:nth-child(1)::before {
      background: linear-gradient(90deg, var(--brand), var(--brand-light));
    }

    .feature-card:nth-child(2)::before {
      background: linear-gradient(90deg, #3B82F6, #60A5FA);
    }

    .feature-card:nth-child(3)::before {
      background: linear-gradient(90deg, #8B5CF6, #A78BFA);
    }

    .feature-card:nth-child(4)::before {
      background: linear-gradient(90deg, #10B981, #34D399);
    }

    .feature-card:nth-child(5)::before {
      background: linear-gradient(90deg, #F59E0B, #FCD34D);
    }

    .feature-card:nth-child(6)::before {
      background: linear-gradient(90deg, #EF4444, #F87171);
    }

    .feature-card:hover::before {
      opacity: 1;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-soft);
    }

    .feature-icon {
      width: 52px;
      height: 52px;
      background: var(--brand-pale);
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: var(--brand);
      margin-bottom: 1.25rem;
      transition: all 0.25s ease;
    }

    .feature-card:hover .feature-icon {
      background: var(--brand);
      color: #fff;
      transform: scale(1.05) rotate(-3deg);
    }

    .feature-title {
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.625rem;
    }

    .feature-desc {
      font-size: 0.9rem;
      color: var(--ink-500);
      line-height: 1.7;
    }

    .feature-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      margin-top: 1.25rem;
      font-size: 0.6875rem;
      font-weight: 700;
      font-family: var(--ff-heading);
      color: var(--brand);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .feature-tag svg {
      width: 12px;
      height: 12px;
    }

    /* ─── BENEFITS ───────────────────────────────────────────────── */
    .benefits-section {
      background: var(--surface);
      padding: 6rem 0;
    }

    .benefits-layout {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: start;
    }

    .benefits-left .section-header {
      margin-bottom: 2.5rem;
    }

    .benefits-highlight-stat {
      background: var(--canvas);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      padding: 1.75rem;
      margin-top: 2rem;
    }

    .bhs-number {
      font-family: var(--ff-heading);
      font-size: 3rem;
      font-weight: 800;
      color: var(--brand);
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .bhs-desc {
      font-size: 0.9375rem;
      color: var(--ink-500);
      line-height: 1.6;
    }

    .bhs-source {
      font-size: 0.75rem;
      color: var(--ink-300);
      margin-top: 1rem;
      font-family: var(--ff-heading);
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .benefit-card {
      background: var(--canvas);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      padding: 1.5rem;
      transition: all 0.25s ease;
      position: relative;
      overflow: hidden;
    }

    .benefit-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(131, 39, 210, 0.03) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .benefit-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-soft);
    }

    .benefit-card:hover::after {
      opacity: 1;
    }

    .benefit-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      margin-bottom: 1rem;
      transition: all 0.25s ease;
    }

    .benefit-card:hover .benefit-icon {
      transform: scale(1.1);
    }

    .benefit-icon.c1 {
      background: rgba(131, 39, 210, 0.1);
      color: var(--brand);
    }

    .benefit-icon.c2 {
      background: rgba(59, 130, 246, 0.1);
      color: #3B82F6;
    }

    .benefit-icon.c3 {
      background: rgba(18, 183, 106, 0.1);
      color: var(--success);
    }

    .benefit-icon.c4 {
      background: rgba(247, 144, 9, 0.1);
      color: var(--warning);
    }

    .benefit-icon.c5 {
      background: rgba(239, 68, 68, 0.1);
      color: #EF4444;
    }

    .benefit-title {
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.375rem;
    }

    .benefit-desc {
      font-size: 0.8375rem;
      color: var(--ink-500);
      line-height: 1.6;
    }

    /* ─── USE CASES ──────────────────────────────────────────────── */
    .usecases-section {
      background: var(--ink-900);
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }

    .usecases-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 400px;
      background: radial-gradient(ellipse at center top, rgba(131, 39, 210, 0.18) 0%, transparent 65%);
      pointer-events: none;
    }

    .usecases-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 24px 24px;
      pointer-events: none;
    }

    .usecases-inner {
      position: relative;
      z-index: 1;
    }

    .usecases-section .section-header.centered .label {
      color: var(--brand-mid);
    }

    .usecases-section .section-header.centered h2 {
      color: #fff;
    }

    .usecases-section .section-header.centered p {
      color: rgba(255, 255, 255, 0.55);
    }

    .usecases-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
    }

    .usecase-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 20px;
      padding: 2rem;
      transition: all 0.25s ease;
      position: relative;
      overflow: hidden;
    }

    .usecase-card:hover {
      background: rgba(131, 39, 210, 0.14);
      border-color: rgba(197, 152, 240, 0.3);
      transform: translateY(-4px);
    }

    .usecase-number {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand-mid);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .usecase-number::before {
      content: '';
      display: block;
      width: 24px;
      height: 1px;
      background: var(--brand-mid);
    }

    .usecase-title {
      font-family: var(--ff-heading);
      font-size: 1.125rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.75rem;
      line-height: 1.35;
    }

    .usecase-desc {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }

    .usecase-outcome {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 0.875rem;
      background: rgba(131, 39, 210, 0.2);
      border: 1px solid rgba(197, 152, 240, 0.2);
      border-radius: var(--r-full);
      display: inline-flex;
    }

    .usecase-outcome-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--brand-mid);
      flex-shrink: 0;
    }

    .usecase-outcome span {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--brand-mid);
    }

    /* ─── IMPLEMENTATION ─────────────────────────────────────────── */
    .implementation-section {
      background: var(--canvas);
      padding: 6rem 0;
    }

    .steps-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .steps-list {
      display: flex;
      flex-direction: column;
      position: relative;
      padding-left: 1.75rem;
    }

    .steps-list::before {
      content: '';
      position: absolute;
      left: 0;
      top: 24px;
      bottom: 24px;
      width: 2px;
      background: linear-gradient(to bottom, var(--brand), var(--brand-light), transparent);
      border-radius: 99px;
    }

    .step-item {
      position: relative;
      padding: 0 0 2.5rem 2rem;
    }

    .step-item:last-child {
      padding-bottom: 0;
    }

    .step-dot {
      position: absolute;
      left: -2.5rem;
      top: 0;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--surface);
      border: 2px solid var(--brand);
      display: grid;
      place-items: center;
    }

    .step-dot-inner {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brand);
    }

    .step-num {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--brand);
      margin-bottom: 0.375rem;
    }

    .step-title {
      font-family: var(--ff-heading);
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.5rem;
    }

    .step-desc {
      font-size: 0.9rem;
      color: var(--ink-500);
      line-height: 1.7;
    }

    .step-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.375rem;
      margin-top: 0.875rem;
    }

    .step-tag {
      padding: 0.25rem 0.7rem;
      background: var(--brand-pale);
      border: 1px solid var(--brand-soft);
      border-radius: var(--r-full);
      font-size: 0.6875rem;
      font-weight: 600;
      font-family: var(--ff-heading);
      color: var(--brand-dark);
    }

    /* Implementation side panel */
    .impl-side {
      position: sticky;
      top: 100px;
    }

    .impl-timeline-card {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .itc-header {
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
      padding: 1.5rem 1.75rem;
    }

    .itc-header-label {
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.65);
      font-family: var(--ff-heading);
      margin-bottom: 0.375rem;
    }

    .itc-header-title {
      font-family: var(--ff-heading);
      font-size: 1.25rem;
      font-weight: 800;
      color: #fff;
    }

    .itc-body {
      padding: 1.5rem 1.75rem;
    }

    .itc-phases {
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
    }

    .itc-phase {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .itc-phase-bar-wrap {
      flex: 1;
    }

    .itc-phase-label {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--ink-700);
      margin-bottom: 0.3rem;
    }

    .itc-phase-bar {
      height: 6px;
      border-radius: 99px;
      background: var(--border-soft);
      overflow: hidden;
    }

    .itc-phase-fill {
      height: 100%;
      border-radius: 99px;
      background: linear-gradient(90deg, var(--brand), var(--brand-light));
      transition: width 1s ease;
    }

    .itc-phase-duration {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--brand);
      white-space: nowrap;
    }

    .itc-divider {
      height: 1px;
      background: var(--border-soft);
      margin: 1rem 0;
    }

    .itc-guarantee {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.875rem 1rem;
      background: rgba(18, 183, 106, 0.06);
      border: 1px solid rgba(18, 183, 106, 0.15);
      border-radius: var(--r-md);
    }

    .itc-guarantee-icon {
      color: var(--success);
      flex-shrink: 0;
    }

    .itc-guarantee-text {
      font-size: 0.8125rem;
      color: var(--ink-700);
      line-height: 1.5;
    }

    .itc-guarantee-text strong {
      color: var(--success);
      font-family: var(--ff-heading);
    }

    /* ─── RELATED SERVICES ───────────────────────────────────────── */
    .related-section {
      background: var(--surface);
      padding: 6rem 0;
    }

    .related-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .related-card {
      background: var(--canvas);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      padding: 2rem 1.75rem;
      display: flex;
      flex-direction: column;
      transition: all 0.25s ease;
      position: relative;
      overflow: hidden;
      text-decoration: none;
    }

    .related-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .related-card:nth-child(1)::before {
      background: linear-gradient(90deg, var(--brand), var(--brand-light));
    }

    .related-card:nth-child(2)::before {
      background: linear-gradient(90deg, #3B82F6, #60A5FA);
    }

    .related-card:nth-child(3)::before {
      background: linear-gradient(90deg, #10B981, #34D399);
    }

    .related-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-soft);
    }

    .related-card:hover::before {
      opacity: 1;
    }

    .related-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      margin-bottom: 1.25rem;
      flex-shrink: 0;
      transition: all 0.25s ease;
    }

    .related-card:hover .related-icon {
      transform: scale(1.05) rotate(-3deg);
    }

    .related-icon.rp {
      background: var(--brand-pale);
      color: var(--brand);
    }

    .related-icon.rb {
      background: rgba(59, 130, 246, 0.1);
      color: #3B82F6;
    }

    .related-icon.rg {
      background: rgba(18, 183, 106, 0.1);
      color: var(--success);
    }

    .related-name {
      font-family: var(--ff-heading);
      font-size: 1.0625rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.5rem;
    }

    .related-desc {
      font-size: 0.875rem;
      color: var(--ink-500);
      line-height: 1.65;
      flex: 1;
    }

    .related-link {
      display: flex;
      align-items: center;
      gap: 0.375rem;
      margin-top: 1.5rem;
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--brand);
      transition: gap 0.2s ease;
    }

    .related-card:hover .related-link {
      gap: 0.625rem;
    }

    /* ─── FINAL CTA ──────────────────────────────────────────────── */
    .final-cta-section {
      padding: 7rem 0;
      background: var(--canvas);
      position: relative;
      overflow: hidden;
    }

    .final-cta-section::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 900px;
      height: 500px;
      background: radial-gradient(ellipse at center, rgba(131, 39, 210, 0.07) 0%, transparent 65%);
      pointer-events: none;
    }

    .final-cta-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(131, 39, 210, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(131, 39, 210, 0.03) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 80%);
    }

    .final-cta-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 720px;
      margin-inline: auto;
    }

    .cta-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.375rem 1rem;
      background: var(--brand-pale);
      border: 1px solid var(--brand-soft);
      border-radius: var(--r-full);
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--brand-dark);
      margin-bottom: 2rem;
    }

    .final-cta-inner h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 1.25rem;
    }

    .final-cta-inner p {
      font-size: 1.0625rem;
      color: var(--ink-500);
      max-width: 560px;
      margin-inline: auto;
      line-height: 1.75;
      margin-bottom: 2.5rem;
    }

    .final-cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .cta-trust-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .cta-trust-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8125rem;
      color: var(--ink-400);
    }

    .cta-trust-item svg {
      color: var(--success);
      flex-shrink: 0;
    }


    /* ─── SCROLL ANIMATIONS ──────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    .reveal-delay-4 {
      transition-delay: 0.4s;
    }

    .reveal-delay-5 {
      transition-delay: 0.5s;
    }

    /* ─── RESPONSIVE ─────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .benefits-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .steps-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .impl-side {
        position: static;
      }

      .footer-grid-new {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
    }

    @media (max-width: 768px) {
      .service-hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .service-hero-visual {
        display: none;
      }

      .overview-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .usecases-grid {
        grid-template-columns: 1fr;
      }

      .related-grid {
        grid-template-columns: 1fr;
      }

      .benefits-grid {
        grid-template-columns: 1fr;
      }

      .nav-links {
        display: none;
      }

      .footer-grid-new {
        grid-template-columns: 1fr 1fr;
      }
    }

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

      .footer-grid-new {
        grid-template-columns: 1fr;
      }
    }